Forrest logo
back to the tox tool

tox:tldr:87b5e

tox: List the available environments.
$ tox --listenvs-all
try on your machine

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.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the tox tool