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
commands=
I have a bash script inside my project which I would like to run before tests… However, the obvious way of running it:
commands= ./reset nosetests
Causes tox to complain:
[TOX] WARNING:test command found but not installed in testenv cmd: /usr/bin/reset env: …/.tox/py27 Maybe forgot to specify a dependency?
I'm working around this for now using:
commands= bash ./reset nosetests
But it would be nice if that wasn't necessary.
The text was updated successfully, but these errors were encountered:
Original comment by @wolever
Cool. I've just updated my CI server and that seems to be working nicely. Thanks!
Sorry, something went wrong.
Original comment by @hpk42
I fixed it so your relative path should work - you can verify with "pip install -i http://pypi.testrun.org -U tox"
I don't know why the "bash" solution works, actually. Bug i think i agree that the "./reset" path should work.
No branches or pull requests
I have a bash script inside my project which I would like to run before tests… However, the obvious way of running it:
Causes tox to complain:
I'm working around this for now using:
But it would be nice if that wasn't necessary.
The text was updated successfully, but these errors were encountered: