tox
tox copied to clipboard
Command line driven CI frontend and development task automation tool.
## What's the problem this feature will solve? `--override` option is nice for changes, but currently it only replaces the config file option. But multiple options are list-like and it...
## What's the problem this feature will solve? `tox` defaults to using the Python version that `tox` itself is installed under (retrieved via `sys.executable`) for testenvs that do not contain...
The `tox` fails early without the `PATH` environment variable and does not run any tests: ``` $ env - /usr/bin/tox -e py39 GLOB sdist-make: [REDACTED] py39 inst-nodeps: [REDACTED] ________________________________________________________________________________________________________________________ summary...
When a specific processor architecture is requested which is not installed tox implicitly falls back to another installed interpreter of the same version. I.e. if `envlist=py39-x86` is specified and only...
In a project, to run the mypy static analyzer, I need to install both mypy and types-requests. While I could specify a separate requirements.txt for this, I would rather just...
## Issue Additional lines of a factor-specific multiline command are not removed when the factor is not present. ## Environment Provide at least: - OS: linux - `pip list` of...
``` ini [tox] skipsdist = true envlist = py{37,38} [testenv] deps = flake8 commands = py37: {[testenv:py37-flake8]commands} py38: {[testenv:py38-flake8]commands} [testenv:py{37,38}-flake8] commands = {envbindir}/flake8 --version ``` ``` console $ venv/bin/tox --version...
When I run `test_local_execute_basic_pass_show_on_standard_newline_flush` or `test_local_execute_write_a_lot` in our Fedora Linux build system they fail because the output from the tox contains `\r\n` instead of just `\n`. The complete output is:...
## What's the problem this feature will solve? tox interpretation of NO_COLOR uses `StrConvert.to_bool()` to look for specific string values (case insensitive match): - 1, on, yes, true to "enable"...
## Issue It seems like `--skip-pkg-install` influences the config detection in tox somehow, making it think there's no config present. I'm trying to handle the compatibility quirks in the CI...