Allow testers to specify test

Until now the command `tox` would run all of the tests.
With this change one can specify a test to be run by running:
  tox -- path/to/test.py
This commit is contained in:
ivan
2017-07-12 16:09:04 +03:00
parent 8e96bf096e
commit b4f8c5478e

View File

@@ -3,4 +3,4 @@ envlist = py27,py34
[testenv]
deps = -rtests/test_requirements.txt
commands = py.test tests/
commands = py.test {posargs:tests/}