tox:tldr:87b5e
The tox --listenvs-all
command is used to list all available test environments defined in the tox.ini
configuration file.
tox
is a command-line tool used to automate and manage virtual environments and testing for Python projects. It simplifies the process of setting up and running tests across different environments.
The --listenvs-all
option is specific to tox
and instructs it to display a list of all test environments defined in the tox.ini
file, including those for different Python versions, operating systems, or any other custom test configurations set up in the file.
By running tox --listenvs-all
, you can see all the configured test environments that tox
will execute when running tests. This command helps in understanding the available test configurations and selecting specific test environments to run using the tox -e <environment>
command.