tox4.23.2
tox4.23.2
Published
tox is a generic virtualenv management and test command line tool
pip install tox
Package Downloads
Authors
Project URLs
Requires Python
>=3.8
Dependencies
- cachetools
>=5.5
- chardet
>=5.2
- colorama
>=0.4.6
- filelock
>=3.16.1
- packaging
>=24.1
- platformdirs
>=4.3.6
- pluggy
>=1.5
- pyproject-api
>=1.8
- tomli
>=2.0.1; python_version < "3.11"
- typing-extensions
>=4.12.2; python_version < "3.11"
- virtualenv
>=20.26.6
- devpi-process
>=1.0.2; extra == "test"
- pytest-mock
>=3.14; extra == "test"
- pytest
>=8.3.3; extra == "test"
tox
tox
aims to automate and standardize testing in Python. It is part of a larger vision of easing the packaging, testing
and release process of Python software (alongside pytest and
devpi).
tox is a generic virtual environment management and test command line tool you can use for:
- checking your package builds and installs correctly under different environments (such as different Python implementations, versions or installation dependencies),
- running your tests in each of the environments with the test tool of choice,
- acting as a frontend to continuous integration servers, greatly reducing boilerplate and merging CI and shell-based testing.
Please read our user guide for an example and more detailed introduction, or watch this YouTube video that presents the problem space and how tox solves it.