Allow tests to be filter when using tox
`tox` will run all tests `tox tests.api.test_auth.AuthTestCase` will run just the tests in AuthTestCase
This commit is contained in:
parent
a2355fae7e
commit
e768d7b3a6
2
tox.ini
2
tox.ini
|
@ -9,7 +9,7 @@ deps =
|
|||
setenv =
|
||||
PYTHONDONTWRITEBYTECODE = no_byte_code
|
||||
commands =
|
||||
coverage run --source=./synapse {envbindir}/trial tests
|
||||
coverage run --source=./synapse {envbindir}/trial {posargs:tests}
|
||||
coverage report -m
|
||||
install_command =
|
||||
pip install --process-dependency-links --pre {opts} {packages}
|
||||
|
|
Loading…
Reference in New Issue