2018-07-28 23:19:14 +01:00
|
|
|
# tox
|
|
|
|
|
|
|
|
> Automate Python testing across multiple Python versions.
|
|
|
|
> Use tox.ini to configure environments and test command.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://github.com/tox-dev/tox>.
|
2018-07-28 23:19:14 +01:00
|
|
|
|
|
|
|
- Run tests on all test environments:
|
|
|
|
|
|
|
|
`tox`
|
|
|
|
|
|
|
|
- Create a tox.ini configuration:
|
|
|
|
|
|
|
|
`tox-quickstart`
|
|
|
|
|
|
|
|
- List the available environments:
|
|
|
|
|
|
|
|
`tox --listenvs-all`
|
|
|
|
|
|
|
|
- Run tests on a specific environment (e.g. python 3.6):
|
|
|
|
|
|
|
|
`tox -e {{py36}}`
|
|
|
|
|
|
|
|
- Force the virtual environment to be recreated:
|
|
|
|
|
|
|
|
`tox --recreate -e {{py27}}`
|