tox
tox copied to clipboard
Command line driven CI frontend and development task automation tool.
In https://github.com/tox-dev/tox/blame/rewrite/docs/user_guide.rst#L64 you can read: > If certain aspects of the project change, a re-creation of the environment is automatically triggered. It would be great to add e.g. a footnote...
:+1: https://tox.readthedocs.io/en/latest/config.html#environment-variable-substitutions
Why? mypy and pytest both use this flag to enable color output support. Instead of using `subprocess.PIPE` we could pass in the openpty child handler (which would also allow directly...
Currently, if you put a command like `delocate-wheel dist/*.whl` in `tox.ini`, that command (`delocate-wheel`) will get `"dist/*.whl"` string as its arg. But if you run it in shell, it'll get...
Having a configuration file schema would clearly make tox easier to use. - Users would know right away if they had a typo, like the famous `skipdist` vs `skipsdist`. -...
tox broke a few times when `get_python_info` was passed a path that was a symbolic link (symlink). https://github.com/tox-dev/tox/blob/717b7644a2376c0178ad293c41c76ff6631bdc46/src/tox/logs/env.py#L17 https://github.com/tox-dev/tox/blob/7aa130318d168ccc476d856ff7b1531bdaf263cc/src/tox/interpreters/via_path.py#L57 ``` $ poetry run tox python_executable is /home/test/src/appmap-python/.tox/.package/bin/python {'executable': '/home/test/src/appmap-python/.tox/.package/bin/python', 'implementation':...
Signed-off-by: Bernát Gábor
I'm triying to run tox in windows 10 to test a python library, when I run it in ubuntu it's everything ok, but in windows I get the next error:...
The instructions for installing tox through linux/macos package managers mention potential name conflicts with other projects but lacks in examples. I also could not find info anywhere else in the...