zuul-jobs/roles/nox
James E. Blair e8df80b5d9 Add inline comment support to nox
Change-Id: I34c7e9eade807470d0ef573e780b40ffc0a8e284
2022-12-19 18:41:16 -08:00
..
defaults Add nox role and some simple jobs 2022-12-19 18:41:12 -08:00
library Add inline comment support to nox 2022-12-19 18:41:16 -08:00
tasks Add inline comment support to nox 2022-12-19 18:41:16 -08:00
README.rst Add inline comment support to nox 2022-12-19 18:41:16 -08:00
__init__.py Add nox role and some simple jobs 2022-12-19 18:41:12 -08:00

README.rst

Runs nox for a project

This role overrides Python packages installed into nox environments with corresponding Zuul sibling projects and runs nox tests as follows:

  1. Create nox environments. Note this role currently relies on using the default .nox/session name environment paths.
  2. Get Python sibling package names for sibling projects created by Zuul (using required-projects job variable). Package names are searched in following sources:
    • setup.cfg of pbr projects,
    • setup.py,
    • nox_package_name role variable.
  3. Remove sibling packages from nox environments.
  4. Create temporary constraints file, lines for sibling packages are removed.
  5. Install sibling packages from Zuul projects into nox environments with temporary constraints file.
  6. Run nox tests.

Role Variables

Space separated string listing nox sessions to run.

String to select nox sessions via keyword rather than session name.

String to select nox sessions via tag rather than session name.

String to force a specific python version to be used in the session. This allows you to request session tests be run against python 3.11.

Path to a nox configuration file. If not specified the nox will look for noxfile.py by default.

Path to a pip constraints file. Will be provided to nox via NOX_CONSTRAINTS_FILE.

Allows a user to setup the package name to be used by nox, over reading a setup.cfg file in the project.