We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
tox will happily pass for non-existing testenvs:
tox
$ tox -e volkswagen volkswagen: OK (0.84 seconds) congratulations :) (0.87 seconds)
This is especially misleading when instead of unit we have unit-k8s and unit-machine.
unit
unit-k8s
unit-machine
We should probably change the CI command to run tox to:
if tox -l | grep -q '^unit$'; then tox -e unit; else echo "Error: 'unit' testenv does not exist"; fi
The text was updated successfully, but these errors were encountered:
Funnily enough, it seems like this was solved upstream: tox-dev/tox#3089
The tox 4.9.0 release https://github.com/tox-dev/tox/releases/tag/4.9.0 includes that change. Our CI is using the latest tox version, so nothing to do here!
tox 4.9.0
Sorry, something went wrong.
No branches or pull requests
tox
will happily pass for non-existing testenvs:This is especially misleading when instead of
unit
we haveunit-k8s
andunit-machine
.We should probably change the CI command to run tox to:
The text was updated successfully, but these errors were encountered: