Yet another CLI for Jenkins. Pykins provides you with:
- The ability to analyze builds
A virtual environment is recommended for development.
To install the latest version of pykins
, run the following commands:
virtualenv .venv && source .venv/bin/activate
pip install .
If you prefer, you can use pipenv
for installing latest vesion:
pipenv shell
To install from PyPi (not necessarily latest version!):
pip install pykins
Create the file /etc/pykins/pykins.yaml
with the following content:
jenkins:
url: https://<jenkins_instance>
user: <jenkins_username>
password: <jenkins_API_token>
- List jobs:
pykins job list
- List jobs with substring 'neutron':
pykins job list neutron
- Show job inforamtion(description, builds):
pykins job show <job_name>
Work in progress
Using pull requests