tox
tox copied to clipboard
Command line driven CI frontend and development task automation tool.
This is a ticket to track and implement a native ``pyproject.toml`` configuration. Will update with the proposed plan and format. Core goals: - explicitly inheritance based (a lot of substitution...
The documentation for `install_command` says, > Note: You can also provide arbitrary commands to the `install_command`. (...) I don't think this is correct. Given this config, ```ini [tox] skip_install =...
From #2427. If I specify a high `minversion` or `requires`, a provision environment is created. Apparently, it is using `install_command` from `[testenv]` section. Is this right? I thought that `testenv`...
Currently using Version: 4.0.0b2 on Windows, and getting an error whereby Tox is trying to decode everything using "utf-8" alone while there might be other valid encodings as well. This...
While with tox 3 it was possible to start interactive commands as shells, with tox4 this is no longer possible because apparently there is some buffering implied which has two...
Currently `tox` requires that a `build-system` table is defined in `pyproject.toml`: ``` $ echo -e '[tox]\nisolated_build = true' > tox.ini $ touch pyproject.toml $ python -m tox -e py ERROR:...
``` # tox/interpreters/py_spec.py:12 def satisfies(self, req): if req.is_abs and self.is_abs and self.path != req.path: return False ``` Comparing self.path to req.path it might happen that self.path is a path string...
When execution any tox command inside a Git bash shell following error occurs:  Tox version 4.0.0b4 (tox 3.25 works fine)
For tox 4.0.0b4 i see weird output characters in Windows Powershell and cmd:   This problem occurs for any tox command i'm calling, so its independent of the configuration...
This is working as expected in tox 3.25, but failing with 4.0.0b4. ``` [tox] envlist = check setenv = file|ci/tox_setenv.txt ``` Error message ``` PS C:\git\pyverify> tox -e check -r...