
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
7 lines
110 B
INI
7 lines
110 B
INI
[tox]
|
|
envlist = py27,py34
|
|
|
|
[testenv]
|
|
deps = -rtests/test_requirements.txt
|
|
commands = py.test {posargs:tests/}
|