tox
tox copied to clipboard
Command line driven CI frontend and development task automation tool.
## Issue There is no documentation for how plugin authors should make use of python logging in order to integrate nicely with tox own logging. The use of standard python...
## Issue $sbj. I've found this while trying to list a dependency with a compatibility operator in the requirement specifier. `~=` triggers the bug, `>=` works. Tox prepends `./` to...
## Issue When try to append path to PATH environment variable via setenv section in tox.ini, it will not take effect. ```ini setenv = PATH = {env:PATH}:/test commands = env...
Imagine the extras declared like this: ```toml # pyproject.toml [project.optional-dependencies] extra-1 = ["pkg-a", "pkg-b"] extra-2 = ["pkg-b", "pkg-c"] extra-3 = ["pkg-d", "pkg-e"] ``` And tox is referencing them: ```ini #...
So basically running `tox -r` would reset tox's cache. However, when it wraps other things with their own caches, those won't be affected. One example is `pre-commit`. It'd be nice...