Skip to content

Robot Framework library for Jenkins interaction

License

Notifications You must be signed in to change notification settings

okgolove/robotframework-jenkins

This branch is 1 commit ahead of master.

Folders and files

NameName
Last commit message
Last commit date
Aug 29, 2024
Dec 13, 2023
Mar 16, 2021
Sep 25, 2022
Mar 15, 2021
May 12, 2019
Mar 15, 2021
Jun 2, 2021
Mar 16, 2021
Mar 15, 2021
Mar 15, 2021
Sep 24, 2022
Dec 12, 2023

Repository files navigation

JenkinsLibrary for Robot Framework

PyPI Supported Jenkins Version

Introduction

JenkinsLibrary is a Robot Framework test library which helps you to involve Jenkins in your tests.

Keyword Documentation

See keyword documentation for available keywords.

Installation

Just run:

pip install robotframework-jenkins

Usage

You need to import Jenkins library:

*** Settings ***
Library    JenkinsLibrary

Then, you need to initialize Jenkins server with keyword:

Set Jenkins Server    url=http://example.com:8080    username=admin    password=admin

Example

*** Settings ***
Library    JenkinsLibrary

*** Test Cases ***
Jenkins Create And Run Job
    [Setup]    Set Jenkins Server    url=http://example.com:8080    username=admin    password=admin
    Create Jenkins Job    test_job
    Start Jenkins Job    test_job