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
pull/4/merge
Daniel Wagner-Hall 10 years ago
parent a2355fae7e
commit e768d7b3a6
  1. 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…
Cancel
Save