commands.sh

tox

all

Automate Python testing across multiple Python versions. Use tox.ini to configure environments and test command.

More info →

Options (2)

-a, --listenvs-allboolean

List the available environments

Example: tox {{[-a|--listenvs-all]}}
-r, --recreateboolean

Force the virtual environment to be recreated

Example: tox {{[-r|--recreate]}} -e {{py27}}

Examples (5)

Run tests on all test environments

Create a `tox.ini` configuration

tox-quickstart

List the available environments

tox [-a|--listenvs-all]

Run tests on a specific environment (e.g. Python 3.6)

tox -e py36

Force the virtual environment to be recreated

tox [-r|--recreate] -e py27
made by @shridhargupta | data from tldr-pages