e8df80b5d9
Change-Id: I34c7e9eade807470d0ef573e780b40ffc0a8e284 |
||
---|---|---|
.. | ||
defaults | ||
library | ||
tasks | ||
__init__.py | ||
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:
- Create nox environments. Note this role currently relies on using the default .nox/session name environment paths.
- 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.
- Remove sibling packages from nox environments.
- Create temporary constraints file, lines for sibling packages are removed.
- Install sibling packages from Zuul projects into nox environments with temporary constraints file.
- 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.