We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Say I have no Python3.3 interpreter on my machine. The following tox.ini:
[tox] envlist = py33 skip_missing_interpreters = True
would of course yield:
python3 -m tox GLOB sdist-make: /xxx/yyy/setup.py py33 recreate: /xxx/yyy/.tox/py33 SKIPPED: InterpreterNotFound: python3.3 __________________________________________________________________ summary ___________________________________________________________________ SKIPPED: py33: InterpreterNotFound: python3.3
but when run in parallel, we get:
python3 -m tox -p auto GLOB sdist-make: /xxx/yyy/setup.py ✔ OK py33 in 0.22 seconds __________________________________________________________________ summary ___________________________________________________________________ py33: commands succeeded congratulations :)
That could make a user to think that his tests are green while they simply … did not run. Tested with tox 3.14.3.
The text was updated successfully, but these errors were encountered:
Duplicate of #1274.
Sorry, something went wrong.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Say I have no Python3.3 interpreter on my machine.
The following tox.ini:
would of course yield:
but when run in parallel, we get:
That could make a user to think that his tests are green while they simply … did not run.
Tested with tox 3.14.3.
The text was updated successfully, but these errors were encountered: