Run tox
environments with strictly pinned dependencies using simple,
well-maintained tools (you're probably using already) with no project or code changes.
This plugin
uses jazzband/pip-tools' pip-compile
to freeze test and project dependencies, save a lock file per-testenv, and have
the locked deps installed, in the usual way via pip
, on subsequent invocations.
This plugin supports both tox 3 and tox 4.
- Install
tox-pin-deps
in the same environment astox
. - Run
tox --pip-compile
to pin deps for the defaultenvlist
. - Commit files under
{toxinidir}/requirements/*.txt
to version control. - Subsequent runs of
tox
will install from the lock file.
- Run
tox --pip-compile --pip-compile-opts \ --upgrade
at any time to lock updated dependencies based on:deps
named intox.ini
for the environment- Project ("dist") dependencies named in
pyproject.toml
,setup.cfg
, orsetup.py
.- Unless
skip_install
orskipsdist
is true
- Unless
- Run
tox --ignore-pins
to use the dependencies named indeps
without any special behavior. - Set
pip_compile_opts = --generate-hashes
in thetestenv
config to enable hash-checking mode. - To always use this plugin, specify
requires = tox-pin-deps
in the[tox]
section oftox.ini
This project is designed to enable reproducible test (and runtime) environments without changing project structure or requiring the use of non-standard tools.
- Use the
deps
andinstall_requires
/[project.dependencies]
that the project already specifies - Only need
pip-compile
at lock time, not at runtime - Uses standard, well-supported tooling:
pip
andvirtualenv
- Requires the user to bring their own
constraints.txt
constraints.txt
is a newer concept in the python packaging, which may be unfamiliar.constraints.txt
with hash checking has had serveral issues since the 2020 pip resolver which make it unsuitable for this use.tox-constraints
does not support tox 4
poetry
is a newer tool that most python programmers haven't worked with.poetry
is a runtime dependency for developing/testing projects.- Requirements are specified in non-standard
[tool.poetry]
section ofpyproject.toml
. - If a project isn't already using
poetry
, adopting it for the sole purpose of controlling and pinning dependencies constitutes a significant change to development and packaging workflows. tox-poetry
does not support tox 4
pipenv
is slow, non-standard, and does NOT work for dist projectspipenv
is older, but still a tool that most python programmers haven't worked with.pipenv
is a runtime dependency for developing/testing projects.- Requirements are specified in a non-standard
Pipfile
andPipfile.lock
. - If a project isn't already using
pipenv
, adopting it for the sole purpose of controlling and pinning dependencies constitutes a significant change to development and packaging workflows. tox-pipenv
has behavioral edge cases that make it uncomfortable to work with.tox-pipenv
does not support tox 4
pip-compile
(directly)
- Need scripts to handle updating / re-locking deps for multiple python versions
- Missing tox
deps
integration for locking test environments
tox-pin-deps
does essentially the same thing as pip-compile-multi
, except using the
environment deps
section as the layer on top of the project's setup.py
or pyproject.toml
, instead of a separate text file.
If a project didn't want to use tox
for managing test environments,
then pip-compile-multi
is a great choice for achieving similar ends.