tox
tox copied to clipboard
Command line driven CI frontend and development task automation tool.
## Issue when running `tox list`, the config file discovery code in `tox.config.source.discover` may semi-silently consume `ValueError` exceptions that would be useful to report to the user. i say "semi-silently"...
## What's the problem this feature will solve? I have a tox file like this: ``` [tox] envlist = py39,docs [testenv:.pkg] deps = build package_glob = {envtmpdir}/dist/*.whl commands = python...
## Issue `posargs` with `:` are not properly passed, `virtualenv` crashes. ## Environment Provide at least: - OS: Ubuntu 20.04 - `pip list` of the host Python where `tox` is...
Documentation for tox3 had https://tox.wiki/en/3.27.0/config.html#conf-passenv Documentation for tox4 does not show the list any more Also see https://github.com/tox-dev/tox/blob/6b1cc141aeb9501aa23774056fbc7179b719e200/src/tox/tox_env/api.py#L179-L204
## Issue I'm using [`pbr`](https://pypi.org/project/pbr/) for a number of projects. I've observed that when using this with tox 4.x, the package fails to build with the following error message being...
## Issue We have some python code that can use certain external binaries to provide extra functionality but is supposed to degrade gracefully if said binaries are not installed. To...
I'm using tox 4.2.3. ``` ini [tox] [testenv] deps = pytest6.x: pytest~=6.0 pytest7.x: pytest~=7.0 commands = pytest --version ``` ``` console $ tox -e py38-pytest7.x py38-pytest7.x: commands[0]> pytest --version pytest...
## Issue Since switching to version 4 (`4.2.6` specifically) from version 3, tox is treating multi-line entries in `setup.cfg` differently, as they seem to be expanded over mulitple lines when...
## Issue I'm not sure if this is a regression, or if I am using a bad pattern that worked by chance in tox3. I use the base [testenv] to...
## Issue We had this in the tox file: ``` codespell {toxinidir}/. --skip {toxinidir}/.git ``` In tox 3.27 it worked fine, but in 4.0 `codespell` was run *without* the `--skip`...