JenkinsLibrary is a Robot Framework test library which helps you to involve Jenkins in your tests.
See keyword documentation for available keywords.
Just run:
pip install robotframework-jenkins
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
*** 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