tox icon indicating copy to clipboard operation
tox copied to clipboard

Command line driven CI frontend and development task automation tool.

Results 215 tox issues
Sort by recently updated
recently updated
newest added

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...

area:configuration
level:hard
help:wanted

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 =...

area:documentation

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`...

area:documentation
level:easy

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...

bug:normal
help:wanted

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...

bug:normal
level:hard

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:...

bug:normal
fixed-by-tox4

``` # 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...

bug:normal
fixed-by-tox4

When execution any tox command inside a Git bash shell following error occurs: ![image](https://user-images.githubusercontent.com/48917891/171736856-e839bbd5-b7df-4413-90b5-51c7ecdbeb5a.png) Tox version 4.0.0b4 (tox 3.25 works fine)

bug:normal

For tox 4.0.0b4 i see weird output characters in Windows Powershell and cmd: ![image](https://user-images.githubusercontent.com/48917891/171735917-eadeddd1-a8ed-4473-938f-14c94aed7db5.png) ![image](https://user-images.githubusercontent.com/48917891/171736194-8031e7d4-d43b-4669-9b94-ee7fc61e4d47.png) This problem occurs for any tox command i'm calling, so its independent of the configuration...

bug:normal

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...

bug:normal