tox
tox copied to clipboard
Command line driven CI frontend and development task automation tool.
Hello, I am giving a spin to tox 4.0.0b1 on the [psycopg 3 project](https://github.com/psycopg/psycopg/). Using tox 3, you can run tests using `tox -c psycopg -s`. On tox4, the first...
We have a runtime application that depends on packages from the file system that live up and over from the runtime application's directory: ``` ├── package/ └── runtime-app/ ├── requirements.txt...
I have noticed something that behaves differently on tox 4.0.0b1 compared with tox 3.24.5. Consider the following `tox.ini` with generative section names: ```ini [tox] minversion = 3.15 envlist = py37,...
When I try to use the latest tox with merged command-line arguments like `tox4 -qre py310` it gives me the following error: ``` usage: tox4 [--colored {yes,no}] [-v | -q]...
See https://github.com/tox-dev/tox/issues/2340, seems we added support for requirement files and editable install but not yet transitive projects (expressed as folders https://github.com/tox-dev/tox/blob/rewrite/src/tox/tox_env/python/pip/req/file.py#L266-L274).
When tox4 is executed from PowerShell (5) on Windows (10), the color output from mypy/pytest is not displayed correctly. The same issue is also observed when using CMD. On the...
I'm often running things like `tox -p auto -e py27,py35 -- testfile::test_function` from Vim, using its builtin quickfix window to look at the errors. (I've a plugin that runs the...
Addition of parallel runs and dependencies is awesome, but we quite miss any support for factors or glob patterns in the `depends` option. In case we have several environments ```...
For projects which support a wide range of Python versions, it seems an unnecessary hurdle to force every contributor to install each Python version locally, in particular if not all...
As @hpk42 [mentioned](https://github.com/tox-dev/tox/pull/495#issuecomment-289426993) certain conventions have been growing to prevent command line args clashes between tox core and plugins, which boil down to * tox -> lowercase switches and long...