CLI interface¶
Shell completion¶
tox supports shell completion for commands, flags, and environment names via argcomplete. Install tox with the
completion extra:
uv tool install 'tox[completion]'
Then configure your shell:
Add to ~/.bashrc:
eval "$(register-python-argcomplete tox)"
Add to ~/.zshrc:
autoload -U bashcompinit
bashcompinit
eval "$(register-python-argcomplete tox)"
Add to ~/.config/fish/config.fish:
register-python-argcomplete --shell fish tox | source
Once configured, pressing <TAB> completes subcommands (tox r → tox run), flags (tox run --), and
environment names (tox run -e lists environments from your tox configuration).
Command-line options¶
tox - CLI interface¶
create and set up environments to run command(s) in them
tox [-h] [--colored {yes,no}]
[--stderr-color {BLACK,BLUE,CYAN,GREEN,LIGHTBLACK_EX,LIGHTBLUE_EX,LIGHTCYAN_EX,LIGHTGREEN_EX,LIGHTMAGENTA_EX,LIGHTRED_EX,LIGHTWHITE_EX,LIGHTYELLOW_EX,MAGENTA,RED,RESET,WHITE,YELLOW}]
[-v | -q] [--exit-and-dump-after seconds] [-c file] [--workdir dir] [--root dir]
[--runner {virtualenv}] [--version] [--no-provision [REQ_JSON]] [--no-recreate-provision]
[-r] [-x OVERRIDE]
{run,r,run-parallel,p,depends,de,man,list,l,devenv,d,schema,config,c,quickstart,q,exec,e,legacy,le} ...
tox options¶
--coloredCOLORED- should output be enriched with colors, default is yes unless TERM=dumb or NO_COLOR is defined.--stderr-colorSTDERR_COLOR- color for stderr output, use RESET for terminal defaults. (default:RED)--exit-and-dump-afterSECONDS- dump tox threads after n seconds and exit the app - useful to debug when tox hangs, 0 means disabled (default:0)-cFILE,--confFILE- configuration file/folder for tox (if not specified will discover one)--workdirDIR- tox working directory (if not specified will be the folder of the config file)--rootDIR- project root directory (if not specified will be the folder of the config file)--runnerDEFAULT_RUNNER- the tox run engine to use when not explicitly stated in tox env configuration (default:virtualenv)--version- show program’s and plugins version number and exit--no-provisionREQ_JSON- do not perform provision, but fail and if a path was provided write provision metadata as JSON to it (default:False)--no-recreate-provision- if recreate is set do not recreate provision tox environment-r,--recreate- recreate the tox environments-xOVERRIDE,--overrideOVERRIDE- configuration override(s), e.g., -x testenv:pypy3.ignore_errors=True (default:[])
tox verbosity¶
every -v increases, every -q decreases verbosity level, default WARNING, map 0=CRITICAL|1=ERROR|2=WARNING|3=INFO|4=DEBUG|5=NOTSET
tox run (r)¶
run environments
tox run [-h] [--colored {yes,no}]
[--stderr-color {BLACK,BLUE,CYAN,GREEN,LIGHTBLACK_EX,LIGHTBLUE_EX,LIGHTCYAN_EX,LIGHTGREEN_EX,LIGHTMAGENTA_EX,LIGHTRED_EX,LIGHTWHITE_EX,LIGHTYELLOW_EX,MAGENTA,RED,RESET,WHITE,YELLOW}]
[--exit-and-dump-after seconds] [-c file] [--workdir dir] [--root dir]
[--runner {virtualenv}] [-v | -q] [--result-json path] [-i] [--hashseed SEED]
[--discover path [path ...]] [--list-dependencies | --no-list-dependencies] [-e ENV |
-m label [label ...] | -f factor [factor ...] | --skip-env re] [-s [v]] [-n] [-b]
[--installpkg INSTALL_PKG] [--fail-fast] [--develop] [--no-recreate-pkg]
[--skip-pkg-install] [--skip-env-install] [--version] [--no-provision [REQ_JSON]]
[--no-recreate-provision] [-r] [-x OVERRIDE]
tox run options¶
--coloredCOLORED- should output be enriched with colors, default is yes unless TERM=dumb or NO_COLOR is defined.--stderr-colorSTDERR_COLOR- color for stderr output, use RESET for terminal defaults. (default:RED)--exit-and-dump-afterSECONDS- dump tox threads after n seconds and exit the app - useful to debug when tox hangs, 0 means disabled (default:0)-cFILE,--confFILE- configuration file/folder for tox (if not specified will discover one)--workdirDIR- tox working directory (if not specified will be the folder of the config file)--rootDIR- project root directory (if not specified will be the folder of the config file)--runnerDEFAULT_RUNNER- the tox run engine to use when not explicitly stated in tox env configuration (default:virtualenv)--result-jsonPATH- write a JSON file with detailed information about all commands and results involved-i,--no-capture- disable output capture (mutually exclusive with –result-json and parallel mode)--hashseedSEED- set PYTHONHASHSEED to SEED before running commands. Defaults to a random integer in the range [1, 4294967295] ([1, 1024] on Windows). Passing'notset'suppresses this behavior. (default:0)--discoverPATH- for Python discovery first try these Python executables (default:[])--list-dependencies- list the dependencies installed during environment setup--no-list-dependencies- never list the dependencies installed during environment setup-sV,--skip-missing-interpretersV- don’t fail tests for missing interpreters:{config,true,false}choice (default:config)-b,--pkg-only,--sdistonly- only perform the packaging activity--installpkgINSTALL_PKG- use specified package for installation into venv, instead of packaging the project--fail-fast- stop execution after the first environment failure--develop- install package in development mode--no-recreate-pkg- if recreate is set do not recreate packaging tox environment(s)--skip-pkg-install- skip package installation for this run--skip-env-install- skip dependency and package installation, reuse existing environment--version- show program’s and plugins version number and exit--no-provisionREQ_JSON- do not perform provision, but fail and if a path was provided write provision metadata as JSON to it (default:False)--no-recreate-provision- if recreate is set do not recreate provision tox environment-r,--recreate- recreate the tox environments-xOVERRIDE,--overrideOVERRIDE- configuration override(s), e.g., -x testenv:pypy3.ignore_errors=True (default:[])
tox run verbosity¶
tox run select target environment(s)¶
-eENV- enumerate (ALL -> all environments, not set -> use <env_list> from config) (default:<env_list>)-mLABEL- labels to evaluate (default:[])-fFACTOR- factors to evaluate (passing multiple factors means'AND', passing this option multiple times means'OR') (default:[])--skip-envRE- exclude all environments selected that match this regular expression (default:)
tox run-parallel (p)¶
run environments in parallel
tox run-parallel [-h] [--colored {yes,no}]
[--stderr-color {BLACK,BLUE,CYAN,GREEN,LIGHTBLACK_EX,LIGHTBLUE_EX,LIGHTCYAN_EX,LIGHTGREEN_EX,LIGHTMAGENTA_EX,LIGHTRED_EX,LIGHTWHITE_EX,LIGHTYELLOW_EX,MAGENTA,RED,RESET,WHITE,YELLOW}]
[--exit-and-dump-after seconds] [-c file] [--workdir dir] [--root dir]
[--runner {virtualenv}] [-v | -q] [--result-json path] [-i]
[--hashseed SEED] [--discover path [path ...]] [--list-dependencies |
--no-list-dependencies] [-e ENV | -m label [label ...] |
-f factor [factor ...] | --skip-env re] [-s [v]] [-n] [-b]
[--installpkg INSTALL_PKG] [--fail-fast] [--develop] [--no-recreate-pkg]
[--skip-pkg-install] [--skip-env-install] [-p VAL] [-o]
[--parallel-no-spinner] [--version] [--no-provision [REQ_JSON]]
[--no-recreate-provision] [-r] [-x OVERRIDE]
tox run-parallel options¶
--coloredCOLORED- should output be enriched with colors, default is yes unless TERM=dumb or NO_COLOR is defined.--stderr-colorSTDERR_COLOR- color for stderr output, use RESET for terminal defaults. (default:RED)--exit-and-dump-afterSECONDS- dump tox threads after n seconds and exit the app - useful to debug when tox hangs, 0 means disabled (default:0)-cFILE,--confFILE- configuration file/folder for tox (if not specified will discover one)--workdirDIR- tox working directory (if not specified will be the folder of the config file)--rootDIR- project root directory (if not specified will be the folder of the config file)--runnerDEFAULT_RUNNER- the tox run engine to use when not explicitly stated in tox env configuration (default:virtualenv)--result-jsonPATH- write a JSON file with detailed information about all commands and results involved-i,--no-capture- disable output capture (mutually exclusive with –result-json and parallel mode)--hashseedSEED- set PYTHONHASHSEED to SEED before running commands. Defaults to a random integer in the range [1, 4294967295] ([1, 1024] on Windows). Passing'notset'suppresses this behavior. (default:0)--discoverPATH- for Python discovery first try these Python executables (default:[])--list-dependencies- list the dependencies installed during environment setup--no-list-dependencies- never list the dependencies installed during environment setup-sV,--skip-missing-interpretersV- don’t fail tests for missing interpreters:{config,true,false}choice (default:config)-b,--pkg-only,--sdistonly- only perform the packaging activity--installpkgINSTALL_PKG- use specified package for installation into venv, instead of packaging the project--fail-fast- stop execution after the first environment failure--develop- install package in development mode--no-recreate-pkg- if recreate is set do not recreate packaging tox environment(s)--skip-pkg-install- skip package installation for this run--skip-env-install- skip dependency and package installation, reuse existing environment-pVAL,--parallelVAL- run tox environments in parallel, the argument controls limit: all, auto - cpu count, some positive number, zero is turn off (default:auto)-o,--parallel-live- connect to stdout while running environments--parallel-no-spinner- disable the spinner when running in parallel, enabled by default in CI--version- show program’s and plugins version number and exit--no-provisionREQ_JSON- do not perform provision, but fail and if a path was provided write provision metadata as JSON to it (default:False)--no-recreate-provision- if recreate is set do not recreate provision tox environment-r,--recreate- recreate the tox environments-xOVERRIDE,--overrideOVERRIDE- configuration override(s), e.g., -x testenv:pypy3.ignore_errors=True (default:[])
tox run-parallel verbosity¶
tox run-parallel select target environment(s)¶
-eENV- enumerate (ALL -> all environments, not set -> use <env_list> from config) (default:<env_list>)-mLABEL- labels to evaluate (default:[])-fFACTOR- factors to evaluate (passing multiple factors means'AND', passing this option multiple times means'OR') (default:[])--skip-envRE- exclude all environments selected that match this regular expression (default:)
tox depends (de)¶
visualize tox environment dependencies
tox depends [-h] [--colored {yes,no}]
[--stderr-color {BLACK,BLUE,CYAN,GREEN,LIGHTBLACK_EX,LIGHTBLUE_EX,LIGHTCYAN_EX,LIGHTGREEN_EX,LIGHTMAGENTA_EX,LIGHTRED_EX,LIGHTWHITE_EX,LIGHTYELLOW_EX,MAGENTA,RED,RESET,WHITE,YELLOW}]
[--exit-and-dump-after seconds] [-c file] [--workdir dir] [--root dir]
[--runner {virtualenv}] [-v | -q] [--version] [--no-provision [REQ_JSON]]
[--no-recreate-provision] [-r] [-x OVERRIDE]
tox depends options¶
--coloredCOLORED- should output be enriched with colors, default is yes unless TERM=dumb or NO_COLOR is defined.--stderr-colorSTDERR_COLOR- color for stderr output, use RESET for terminal defaults. (default:RED)--exit-and-dump-afterSECONDS- dump tox threads after n seconds and exit the app - useful to debug when tox hangs, 0 means disabled (default:0)-cFILE,--confFILE- configuration file/folder for tox (if not specified will discover one)--workdirDIR- tox working directory (if not specified will be the folder of the config file)--rootDIR- project root directory (if not specified will be the folder of the config file)--runnerDEFAULT_RUNNER- the tox run engine to use when not explicitly stated in tox env configuration (default:virtualenv)--version- show program’s and plugins version number and exit--no-provisionREQ_JSON- do not perform provision, but fail and if a path was provided write provision metadata as JSON to it (default:False)--no-recreate-provision- if recreate is set do not recreate provision tox environment-r,--recreate- recreate the tox environments-xOVERRIDE,--overrideOVERRIDE- configuration override(s), e.g., -x testenv:pypy3.ignore_errors=True (default:[])
tox depends verbosity¶
tox man¶
Set up tox man page for current shell
tox man [-h] [--colored {yes,no}]
[--stderr-color {BLACK,BLUE,CYAN,GREEN,LIGHTBLACK_EX,LIGHTBLUE_EX,LIGHTCYAN_EX,LIGHTGREEN_EX,LIGHTMAGENTA_EX,LIGHTRED_EX,LIGHTWHITE_EX,LIGHTYELLOW_EX,MAGENTA,RED,RESET,WHITE,YELLOW}]
[--exit-and-dump-after seconds] [-c file] [--workdir dir] [--root dir]
[--runner {virtualenv}] [-v | -q] [--version] [--no-provision [REQ_JSON]]
[--no-recreate-provision] [-r] [-x OVERRIDE]
tox man options¶
--coloredCOLORED- should output be enriched with colors, default is yes unless TERM=dumb or NO_COLOR is defined.--stderr-colorSTDERR_COLOR- color for stderr output, use RESET for terminal defaults. (default:RED)--exit-and-dump-afterSECONDS- dump tox threads after n seconds and exit the app - useful to debug when tox hangs, 0 means disabled (default:0)-cFILE,--confFILE- configuration file/folder for tox (if not specified will discover one)--workdirDIR- tox working directory (if not specified will be the folder of the config file)--rootDIR- project root directory (if not specified will be the folder of the config file)--runnerDEFAULT_RUNNER- the tox run engine to use when not explicitly stated in tox env configuration (default:virtualenv)--version- show program’s and plugins version number and exit--no-provisionREQ_JSON- do not perform provision, but fail and if a path was provided write provision metadata as JSON to it (default:False)--no-recreate-provision- if recreate is set do not recreate provision tox environment-r,--recreate- recreate the tox environments-xOVERRIDE,--overrideOVERRIDE- configuration override(s), e.g., -x testenv:pypy3.ignore_errors=True (default:[])
tox man verbosity¶
tox list (l)¶
list environments
tox list [-h] [--colored {yes,no}]
[--stderr-color {BLACK,BLUE,CYAN,GREEN,LIGHTBLACK_EX,LIGHTBLUE_EX,LIGHTCYAN_EX,LIGHTGREEN_EX,LIGHTMAGENTA_EX,LIGHTRED_EX,LIGHTWHITE_EX,LIGHTYELLOW_EX,MAGENTA,RED,RESET,WHITE,YELLOW}]
[--exit-and-dump-after seconds] [-c file] [--workdir dir] [--root dir]
[--runner {virtualenv}] [-v | -q] [--no-desc] [-m label [label ...] |
-f factor [factor ...] | --skip-env re | -d] [--version] [--no-provision [REQ_JSON]]
[--no-recreate-provision] [-r] [-x OVERRIDE]
tox list options¶
--coloredCOLORED- should output be enriched with colors, default is yes unless TERM=dumb or NO_COLOR is defined.--stderr-colorSTDERR_COLOR- color for stderr output, use RESET for terminal defaults. (default:RED)--exit-and-dump-afterSECONDS- dump tox threads after n seconds and exit the app - useful to debug when tox hangs, 0 means disabled (default:0)-cFILE,--confFILE- configuration file/folder for tox (if not specified will discover one)--workdirDIR- tox working directory (if not specified will be the folder of the config file)--rootDIR- project root directory (if not specified will be the folder of the config file)--runnerDEFAULT_RUNNER- the tox run engine to use when not explicitly stated in tox env configuration (default:virtualenv)--no-desc- do not show description--version- show program’s and plugins version number and exit--no-provisionREQ_JSON- do not perform provision, but fail and if a path was provided write provision metadata as JSON to it (default:False)--no-recreate-provision- if recreate is set do not recreate provision tox environment-r,--recreate- recreate the tox environments-xOVERRIDE,--overrideOVERRIDE- configuration override(s), e.g., -x testenv:pypy3.ignore_errors=True (default:[])
tox list verbosity¶
tox list select target environment(s)¶
-mLABEL- labels to evaluate (default:[])-fFACTOR- factors to evaluate (passing multiple factors means'AND', passing this option multiple times means'OR') (default:[])--skip-envRE- exclude all environments selected that match this regular expression (default:)-d- list just default envs
tox devenv (d)¶
sets up a development environment at ENVDIR based on the tox configuration specified
tox devenv [-h] [--colored {yes,no}]
[--stderr-color {BLACK,BLUE,CYAN,GREEN,LIGHTBLACK_EX,LIGHTBLUE_EX,LIGHTCYAN_EX,LIGHTGREEN_EX,LIGHTMAGENTA_EX,LIGHTRED_EX,LIGHTWHITE_EX,LIGHTYELLOW_EX,MAGENTA,RED,RESET,WHITE,YELLOW}]
[--exit-and-dump-after seconds] [-c file] [--workdir dir] [--root dir]
[--runner {virtualenv}] [-v | -q] [--result-json path] [-i] [--hashseed SEED]
[--discover path [path ...]] [--list-dependencies | --no-list-dependencies]
[-e ENV] [--skip-env re] [--no-recreate-pkg] [--version]
[--no-provision [REQ_JSON]] [--no-recreate-provision] [-r] [-x OVERRIDE]
[path]
tox devenv positional arguments¶
path(default:venv)
tox devenv options¶
--coloredCOLORED- should output be enriched with colors, default is yes unless TERM=dumb or NO_COLOR is defined.--stderr-colorSTDERR_COLOR- color for stderr output, use RESET for terminal defaults. (default:RED)--exit-and-dump-afterSECONDS- dump tox threads after n seconds and exit the app - useful to debug when tox hangs, 0 means disabled (default:0)-cFILE,--confFILE- configuration file/folder for tox (if not specified will discover one)--workdirDIR- tox working directory (if not specified will be the folder of the config file)--rootDIR- project root directory (if not specified will be the folder of the config file)--runnerDEFAULT_RUNNER- the tox run engine to use when not explicitly stated in tox env configuration (default:virtualenv)--result-jsonPATH- write a JSON file with detailed information about all commands and results involved-i,--no-capture- disable output capture (mutually exclusive with –result-json and parallel mode)--hashseedSEED- set PYTHONHASHSEED to SEED before running commands. Defaults to a random integer in the range [1, 4294967295] ([1, 1024] on Windows). Passing'notset'suppresses this behavior. (default:0)--discoverPATH- for Python discovery first try these Python executables (default:[])--list-dependencies- list the dependencies installed during environment setup--no-list-dependencies- never list the dependencies installed during environment setup-eENV- environment to run (default:py)--skip-envRE- exclude all environments selected that match this regular expression (default:)--no-recreate-pkg- if recreate is set do not recreate packaging tox environment(s)--version- show program’s and plugins version number and exit--no-provisionREQ_JSON- do not perform provision, but fail and if a path was provided write provision metadata as JSON to it (default:False)--no-recreate-provision- if recreate is set do not recreate provision tox environment-r,--recreate- recreate the tox environments-xOVERRIDE,--overrideOVERRIDE- configuration override(s), e.g., -x testenv:pypy3.ignore_errors=True (default:[])
tox devenv verbosity¶
tox schema¶
Generate schema for tox configuration
tox schema [-h] [--colored {yes,no}]
[--stderr-color {BLACK,BLUE,CYAN,GREEN,LIGHTBLACK_EX,LIGHTBLUE_EX,LIGHTCYAN_EX,LIGHTGREEN_EX,LIGHTMAGENTA_EX,LIGHTRED_EX,LIGHTWHITE_EX,LIGHTYELLOW_EX,MAGENTA,RED,RESET,WHITE,YELLOW}]
[--exit-and-dump-after seconds] [-c file] [--workdir dir] [--root dir]
[--runner {virtualenv}] [-v | -q] [--strict] [--version]
[--no-provision [REQ_JSON]] [--no-recreate-provision] [-r] [-x OVERRIDE]
tox schema options¶
--coloredCOLORED- should output be enriched with colors, default is yes unless TERM=dumb or NO_COLOR is defined.--stderr-colorSTDERR_COLOR- color for stderr output, use RESET for terminal defaults. (default:RED)--exit-and-dump-afterSECONDS- dump tox threads after n seconds and exit the app - useful to debug when tox hangs, 0 means disabled (default:0)-cFILE,--confFILE- configuration file/folder for tox (if not specified will discover one)--workdirDIR- tox working directory (if not specified will be the folder of the config file)--rootDIR- project root directory (if not specified will be the folder of the config file)--runnerDEFAULT_RUNNER- the tox run engine to use when not explicitly stated in tox env configuration (default:virtualenv)--strict- Disallow extra properties in configuration--version- show program’s and plugins version number and exit--no-provisionREQ_JSON- do not perform provision, but fail and if a path was provided write provision metadata as JSON to it (default:False)--no-recreate-provision- if recreate is set do not recreate provision tox environment-r,--recreate- recreate the tox environments-xOVERRIDE,--overrideOVERRIDE- configuration override(s), e.g., -x testenv:pypy3.ignore_errors=True (default:[])
tox schema verbosity¶
tox config (c)¶
show tox configuration
tox config [-h] [--colored {yes,no}]
[--stderr-color {BLACK,BLUE,CYAN,GREEN,LIGHTBLACK_EX,LIGHTBLUE_EX,LIGHTCYAN_EX,LIGHTGREEN_EX,LIGHTMAGENTA_EX,LIGHTRED_EX,LIGHTWHITE_EX,LIGHTYELLOW_EX,MAGENTA,RED,RESET,WHITE,YELLOW}]
[--exit-and-dump-after seconds] [-c file] [--workdir dir] [--root dir]
[--runner {virtualenv}] [-v | -q] [--result-json path] [-i] [--hashseed SEED]
[--discover path [path ...]] [--list-dependencies | --no-list-dependencies]
[-k key [key ...]] [--core] [--format {ini,json,toml}] [-o OUTPUT_FILE] [-e ENV |
-m label [label ...] | -f factor [factor ...] | --skip-env re] [-s [v]]
[--develop] [--no-recreate-pkg] [--version] [--no-provision [REQ_JSON]]
[--no-recreate-provision] [-r] [-x OVERRIDE]
tox config options¶
--coloredCOLORED- should output be enriched with colors, default is yes unless TERM=dumb or NO_COLOR is defined.--stderr-colorSTDERR_COLOR- color for stderr output, use RESET for terminal defaults. (default:RED)--exit-and-dump-afterSECONDS- dump tox threads after n seconds and exit the app - useful to debug when tox hangs, 0 means disabled (default:0)-cFILE,--confFILE- configuration file/folder for tox (if not specified will discover one)--workdirDIR- tox working directory (if not specified will be the folder of the config file)--rootDIR- project root directory (if not specified will be the folder of the config file)--runnerDEFAULT_RUNNER- the tox run engine to use when not explicitly stated in tox env configuration (default:virtualenv)--result-jsonPATH- write a JSON file with detailed information about all commands and results involved-i,--no-capture- disable output capture (mutually exclusive with –result-json and parallel mode)--hashseedSEED- set PYTHONHASHSEED to SEED before running commands. Defaults to a random integer in the range [1, 4294967295] ([1, 1024] on Windows). Passing'notset'suppresses this behavior. (default:0)--discoverPATH- for Python discovery first try these Python executables (default:[])--list-dependencies- list the dependencies installed during environment setup--no-list-dependencies- never list the dependencies installed during environment setup-kKEY- list just configuration keys specified (default:[])--core- show core options (by default is hidden unless -e ALL is passed)--formatCONFIG_FORMAT- output format (default: %(default)s) (default:ini)-oOUTPUT_FILE,--output-fileOUTPUT_FILE- write output to file instead of stdout-sV,--skip-missing-interpretersV- don’t fail tests for missing interpreters:{config,true,false}choice (default:config)--develop- install package in development mode--no-recreate-pkg- if recreate is set do not recreate packaging tox environment(s)--version- show program’s and plugins version number and exit--no-provisionREQ_JSON- do not perform provision, but fail and if a path was provided write provision metadata as JSON to it (default:False)--no-recreate-provision- if recreate is set do not recreate provision tox environment-r,--recreate- recreate the tox environments-xOVERRIDE,--overrideOVERRIDE- configuration override(s), e.g., -x testenv:pypy3.ignore_errors=True (default:[])
tox config verbosity¶
tox config select target environment(s)¶
-eENV- enumerate (ALL -> all environments, not set -> use <env_list> from config) (default:<env_list>)-mLABEL- labels to evaluate (default:[])-fFACTOR- factors to evaluate (passing multiple factors means'AND', passing this option multiple times means'OR') (default:[])--skip-envRE- exclude all environments selected that match this regular expression (default:)
tox quickstart (q)¶
Command line script to quickly create a tox config file for a Python project
tox quickstart [-h] [--colored {yes,no}]
[--stderr-color {BLACK,BLUE,CYAN,GREEN,LIGHTBLACK_EX,LIGHTBLUE_EX,LIGHTCYAN_EX,LIGHTGREEN_EX,LIGHTMAGENTA_EX,LIGHTRED_EX,LIGHTWHITE_EX,LIGHTYELLOW_EX,MAGENTA,RED,RESET,WHITE,YELLOW}]
[--exit-and-dump-after seconds] [-c file] [--workdir dir] [--root dir]
[--runner {virtualenv}] [-v | -q] [--version] [--no-provision [REQ_JSON]]
[--no-recreate-provision] [-r] [-x OVERRIDE]
[root]
tox quickstart positional arguments¶
root- folder to create the tox.ini file (default:{cwd})
tox quickstart options¶
--coloredCOLORED- should output be enriched with colors, default is yes unless TERM=dumb or NO_COLOR is defined.--stderr-colorSTDERR_COLOR- color for stderr output, use RESET for terminal defaults. (default:RED)--exit-and-dump-afterSECONDS- dump tox threads after n seconds and exit the app - useful to debug when tox hangs, 0 means disabled (default:0)-cFILE,--confFILE- configuration file/folder for tox (if not specified will discover one)--workdirDIR- tox working directory (if not specified will be the folder of the config file)--rootDIR- project root directory (if not specified will be the folder of the config file)--runnerDEFAULT_RUNNER- the tox run engine to use when not explicitly stated in tox env configuration (default:virtualenv)--version- show program’s and plugins version number and exit--no-provisionREQ_JSON- do not perform provision, but fail and if a path was provided write provision metadata as JSON to it (default:False)--no-recreate-provision- if recreate is set do not recreate provision tox environment-r,--recreate- recreate the tox environments-xOVERRIDE,--overrideOVERRIDE- configuration override(s), e.g., -x testenv:pypy3.ignore_errors=True (default:[])
tox quickstart verbosity¶
tox exec (e)¶
execute an arbitrary command within a tox environment
tox exec [-h] [--colored {yes,no}]
[--stderr-color {BLACK,BLUE,CYAN,GREEN,LIGHTBLACK_EX,LIGHTBLUE_EX,LIGHTCYAN_EX,LIGHTGREEN_EX,LIGHTMAGENTA_EX,LIGHTRED_EX,LIGHTWHITE_EX,LIGHTYELLOW_EX,MAGENTA,RED,RESET,WHITE,YELLOW}]
[--exit-and-dump-after seconds] [-c file] [--workdir dir] [--root dir]
[--runner {virtualenv}] [-v | -q] [--result-json path] [--hashseed SEED]
[--discover path [path ...]] [--list-dependencies | --no-list-dependencies] [-e ENV]
[--skip-env re] [-s [v]] [-n] [-b] [--installpkg INSTALL_PKG] [--fail-fast]
[--develop] [--no-recreate-pkg] [--skip-pkg-install] [--skip-env-install]
[--version] [--no-provision [REQ_JSON]] [--no-recreate-provision] [-r] [-x OVERRIDE]
tox exec options¶
--coloredCOLORED- should output be enriched with colors, default is yes unless TERM=dumb or NO_COLOR is defined.--stderr-colorSTDERR_COLOR- color for stderr output, use RESET for terminal defaults. (default:RED)--exit-and-dump-afterSECONDS- dump tox threads after n seconds and exit the app - useful to debug when tox hangs, 0 means disabled (default:0)-cFILE,--confFILE- configuration file/folder for tox (if not specified will discover one)--workdirDIR- tox working directory (if not specified will be the folder of the config file)--rootDIR- project root directory (if not specified will be the folder of the config file)--runnerDEFAULT_RUNNER- the tox run engine to use when not explicitly stated in tox env configuration (default:virtualenv)--result-jsonPATH- write a JSON file with detailed information about all commands and results involved--hashseedSEED- set PYTHONHASHSEED to SEED before running commands. Defaults to a random integer in the range [1, 4294967295] ([1, 1024] on Windows). Passing'notset'suppresses this behavior. (default:0)--discoverPATH- for Python discovery first try these Python executables (default:[])--list-dependencies- list the dependencies installed during environment setup--no-list-dependencies- never list the dependencies installed during environment setup-eENV- environment to run (default:py)--skip-envRE- exclude all environments selected that match this regular expression (default:)-sV,--skip-missing-interpretersV- don’t fail tests for missing interpreters:{config,true,false}choice (default:config)-b,--pkg-only,--sdistonly- only perform the packaging activity--installpkgINSTALL_PKG- use specified package for installation into venv, instead of packaging the project--fail-fast- stop execution after the first environment failure--develop- install package in development mode--no-recreate-pkg- if recreate is set do not recreate packaging tox environment(s)--skip-pkg-install- skip package installation for this run--skip-env-install- skip dependency and package installation, reuse existing environment--version- show program’s and plugins version number and exit--no-provisionREQ_JSON- do not perform provision, but fail and if a path was provided write provision metadata as JSON to it (default:False)--no-recreate-provision- if recreate is set do not recreate provision tox environment-r,--recreate- recreate the tox environments-xOVERRIDE,--overrideOVERRIDE- configuration override(s), e.g., -x testenv:pypy3.ignore_errors=True (default:[])
tox exec verbosity¶
tox legacy (le)¶
legacy entry-point command
tox legacy [-h] [--colored {yes,no}]
[--stderr-color {BLACK,BLUE,CYAN,GREEN,LIGHTBLACK_EX,LIGHTBLUE_EX,LIGHTCYAN_EX,LIGHTGREEN_EX,LIGHTMAGENTA_EX,LIGHTRED_EX,LIGHTWHITE_EX,LIGHTYELLOW_EX,MAGENTA,RED,RESET,WHITE,YELLOW}]
[--exit-and-dump-after seconds] [-c file] [--workdir dir] [--root dir]
[--runner {virtualenv}] [--version] [-v | -q] [--result-json path] [-i]
[--hashseed SEED] [--discover path [path ...]] [--list-dependencies |
--no-list-dependencies] [--help-ini] [--showconfig] [-a] [-l] [--devenv ENVDIR]
[-e ENV | -m label [label ...] | -f factor [factor ...] | --skip-env re] [-s [v]]
[-n] [-b] [--installpkg INSTALL_PKG] [--fail-fast] [--develop] [--no-recreate-pkg]
[--skip-pkg-install] [--skip-env-install] [-p [VAL]] [-o] [--parallel-no-spinner]
[--pre] [--force-dep req] [--sitepackages] [--alwayscopy]
[--no-provision [REQ_JSON]] [--no-recreate-provision] [-r] [-x OVERRIDE]
tox legacy options¶
--coloredCOLORED- should output be enriched with colors, default is yes unless TERM=dumb or NO_COLOR is defined.--stderr-colorSTDERR_COLOR- color for stderr output, use RESET for terminal defaults. (default:RED)--exit-and-dump-afterSECONDS- dump tox threads after n seconds and exit the app - useful to debug when tox hangs, 0 means disabled (default:0)-cFILE,--confFILE- configuration file/folder for tox (if not specified will discover one)--workdirDIR- tox working directory (if not specified will be the folder of the config file)--rootDIR- project root directory (if not specified will be the folder of the config file)--runnerDEFAULT_RUNNER- the tox run engine to use when not explicitly stated in tox env configuration (default:virtualenv)--version- show program’s and plugins version number and exit--result-jsonPATH- write a JSON file with detailed information about all commands and results involved-i,--no-capture- disable output capture (mutually exclusive with –result-json and parallel mode)--hashseedSEED- set PYTHONHASHSEED to SEED before running commands. Defaults to a random integer in the range [1, 4294967295] ([1, 1024] on Windows). Passing'notset'suppresses this behavior. (default:0)--discoverPATH- for Python discovery first try these Python executables (default:[])--list-dependencies- list the dependencies installed during environment setup--no-list-dependencies- never list the dependencies installed during environment setup--help-ini,--hi- show live configuration--showconfig- show live configuration (by default all env, with -l only default targets, specific via TOXENV/-e)-a,--listenvs-all- show list of all defined environments (with description if verbose)-l,--listenvs- show list of test environments (with description if verbose)--devenvENVDIR- sets up a development environment at ENVDIR based on the env’s tox configuration specified by`-e` (-e defaults to py)-sV,--skip-missing-interpretersV- don’t fail tests for missing interpreters:{config,true,false}choice (default:config)-b,--pkg-only,--sdistonly- only perform the packaging activity--installpkgINSTALL_PKG- use specified package for installation into venv, instead of packaging the project--fail-fast- stop execution after the first environment failure--develop- install package in development mode--no-recreate-pkg- if recreate is set do not recreate packaging tox environment(s)--skip-pkg-install- skip package installation for this run--skip-env-install- skip dependency and package installation, reuse existing environment-pVAL,--parallelVAL- run tox environments in parallel, the argument controls limit: all, auto - cpu count, some positive number, zero is turn off (default:0)-o,--parallel-live- connect to stdout while running environments--parallel-no-spinner- disable the spinner when running in parallel, enabled by default in CI--pre- deprecated use PIP_PRE in set_env instead - install pre-releases and development versions ofdependencies; this will set PIP_PRE=1 environment variable--force-depREQ- Forces a certain version of one of the dependencies when configuring the virtual environment. REQ Examples'pytest<6.1'or'django>=2.2'. (default:[])--sitepackages- deprecated use VIRTUALENV_SYSTEM_SITE_PACKAGES=1, override sitepackages setting to True in all envs--alwayscopy- deprecated use VIRTUALENV_ALWAYS_COPY=1, override always copy setting to True in all envs--no-provisionREQ_JSON- do not perform provision, but fail and if a path was provided write provision metadata as JSON to it (default:False)--no-recreate-provision- if recreate is set do not recreate provision tox environment-r,--recreate- recreate the tox environments-xOVERRIDE,--overrideOVERRIDE- configuration override(s), e.g., -x testenv:pypy3.ignore_errors=True (default:[])
tox legacy verbosity¶
tox legacy select target environment(s)¶
-eENV- enumerate (ALL -> all environments, not set -> use <env_list> from config) (default:<env_list>)-mLABEL- labels to evaluate (default:[])-fFACTOR- factors to evaluate (passing multiple factors means'AND', passing this option multiple times means'OR') (default:[])--skip-envRE- exclude all environments selected that match this regular expression (default:)