Skip to main content

Python continuous integration (CI) support tools.

Project description

Introduction

Python continuous integration (CI) support tools.

To install: pip install isee

Documentation here.

  1. Introduction
  2. Goal
  3. Workflow
  4. Results and Logs
  5. Versioning
  6. Skip CI
  7. Hosting
  8. How to setup CI
  9. Useful resources
  10. Troubleshooting

Goal

The goal of CI is to automate code formatting, validation, deployment and publishing of packages.

Workflow

A CI pipeline is triggered when new code is pushed to a remote repository. Every CI pipeline does at least:

  1. Code formatting
    • Apply automated linting on source code
    • Push back the formatted code to the remote repository
  2. Code validation
    • Testing (unit tests, integration tests, doctests)
    • Docstring validation (only for frameworks)
  3. Deployment to an integration environment for applications / Publishing for frameworks -- (only on master and only if the Validation step succeeded)
    • Semi-automated versioning (see the Versioning section) + Tag the repository with the new generated version number
    • Packaging
    • Deployment / Publishing

Results and Logs

You can see your CI pipeline's result and logs:

  • From your GitLab project page → CI/CD → Pipelines
  • From your GitHub project page → Actions → Continuous Integration

Versioning

Versioning is semi-automatically resolved: if you want the major or minor part to be bumped, you only have to add [bump major] or [bump minor] to your commit message on master (versioning is not applied to other branches).

Example, the current version number is 1.0.5. If you commit with the following message:

Added some new stuff.

the new version number will be 1.0.6. But if you commit with the following message:

Added some great new stuff! [bump minor]

the new version number will be 1.1.0. Finally, if you commit with the following message:

Added some extraordinary new stuff!!! [bump major]

the new version number will be 2.0.0.

Skip CI

You can prevent the CI pipeline from being triggered by adding [skip ci] to your commit message. Example:

Updated the README file. [skip ci]

Be careful! If you skip the CI process, any new code will not be validated and no new version will be deployed/published. So, think twice before using it.

Hosting

CI pipelines for GitHub public repositories are run on GitHub-hosted runners. See the GitHub documentation for more details

How to setup CI

This "How to" section applies to python package projects only. If you want to setup CI to an application project or another programing language, you will have to modify the CI pipeline definition according to your needs.

For a GitHub repository

  1. Add this ci.yml file to the github/workflow/ directory (create the directory if it doesn't exist) into your local repository. Note that wads does it for you by running the following command from the project's root directory (documentation here):
 populate . --root-url=GITHUB_ROOT_URL

Note that you can specify the root directory (in case you're not in the root directory), root url (in case the directory is not already associated to a git repo), and have many other parametrization choices.

Fear not: populate will not create or modify the ci.yml file (or any other file) if there is one already.

  1. In the ci.yml file, replace #PROJECT_NAME# with the project name (must be the exact same name as the main module of the project, not needed if you ran the populate tool because it did it for you) and modify the pipeline workflow to suit the project's needs. Documentation here.
  2. Add secrets PYPI_USERNAME and PYPI_PASSWORD with your PYPI credentials to the remote repository. Documentation here.
  3. If you want the project's documentation to be published, configure the project's Github Pages for the project by selecting the /docs folder. Documentation here.
  4. Push your code and see the execution of the new Continuous Integration workflow. Documentation here. Consider using wads to automatically validate your code locally, commit and push by running the following command (documentation here):
pack check-in 'Your commit message.'

Useful resources

troubleshooting tests

Troubleshooting

Github token problems (e.g. tagging)

At the point of writing this, some jobs don't fail when there are (non-essential) errors. One hidden problem that you might get in when "Tag Repository With New Version Number" does a Run isee tag-repo $VERSION. You'll get:

remote: Permission to thorwhalen/sung.git denied to github-actions[bot].
fatal: unable to access 'https://github.com/thorwhalen/sung/': The requested URL returned error: 403
Error executing git command: Command 'git --git-dir="/home/runner/work/sung/sung/.git" --work-tree="/home/runner/work/sung/sung" push origin 0.0.16' returned non-zero exit status 128.
Standard output: 
Exit code: 128

Top cause and solution:

  • Check Repository Permissions: Ensure that the GITHUB_TOKEN has the necessary permissions (i.e. read and write) to push to the repository. You can configure this in the repository settings under Actions -> General -> Workflow permissions (https://github.com/{username_or_org}/{repo}/settings/actions).

image

Other possible problesm:

  • Verify SSH keys: Did you put a ssh public key, and a corresponding SSH_PRIVATE_KEY in your environment), and are they correct? Global ssh public keys can be managed here in user or org level settings. Set repository secrets (envoronment variable) here: https://github.com/{username_or_org}/{repo}/settings/secrets/actions.
  • Review the Token Usage
  • Check Branch Protection Rules

Vesion tag misalignment

Sometimes the twine PYPI publishing may fail with such a message:

WARNING  Skipping PKGNAME-0.1.4-py3-none-any.whl because it appears to already exist 
WARNING  Skipping PKGNAME-0.1.4.tar.gz because it appears to already exist

This often means that your git tags are misaligned with the setup.cfg version. You can see your git tags here: https://github.com/ORG/REPO/tags.

To repair, do this:

  • go to the https://pypi.org/project/ project page and note the PYPI_VERSION number
  • got to setup.cfg and see what version is there, called it SETUP_VERSION
  • make a NEW_VERSION, which is a version number ABOVE the SETUP_VERSION and PYPI_VERSION.
  • edit the setup.cfg so it shows NEW_VERSION
  • git tag NEW_VERSION
  • git push origin NEW_VERSION

Sometimes I need to update the setup version again, and push again.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

isee-0.2.30.tar.gz (13.6 kB view details)

Uploaded Source

Built Distribution

isee-0.2.30-py3-none-any.whl (12.5 kB view details)

Uploaded Python 3

File details

Details for the file isee-0.2.30.tar.gz.

File metadata

  • Download URL: isee-0.2.30.tar.gz
  • Upload date:
  • Size: 13.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for isee-0.2.30.tar.gz
Algorithm Hash digest
SHA256 c9f573c4da3067add1a9bc5cb6274b2d970c21dab8c537c6bb8590cc8f13c5ad
MD5 08aa086119422c15cf627a22941a3fad
BLAKE2b-256 ddd17c232475b19f66105ba963f294e5a41801576ec57f22e4c6a804b4068c6c

See more details on using hashes here.

File details

Details for the file isee-0.2.30-py3-none-any.whl.

File metadata

  • Download URL: isee-0.2.30-py3-none-any.whl
  • Upload date:
  • Size: 12.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for isee-0.2.30-py3-none-any.whl
Algorithm Hash digest
SHA256 cf3a1583c110c1d5eae00133e326c0ba465aa28de6ae36dd53095472bc328166
MD5 7244078b7b168d3b3c5eaec63804a4b2
BLAKE2b-256 9f25c5e9d7b7c920ba9827069058980d3d168a4828e8868f80fed8325e0106cf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page