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