Skip to content

Commit 590d9a5

Browse files
willkgjgraham
authored andcommitted
Fix tox.ini to allow specifying pytest tests (#323)
This fixes tox.ini so that you can pass arguments to py.test. For example: tox -e py34-base html5lib/tests/test_serializer.py will now only run the serializer tests. tox -e py34-base -- -vv will run with super verbose mode and tons of data will go flying by in your terminal.
1 parent 05fcd62 commit 590d9a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ deps =
1313
optional: -r{toxinidir}/requirements-optional.txt
1414

1515
commands =
16-
{envbindir}/py.test
16+
{envbindir}/py.test {posargs}
1717
{toxinidir}/flake8-run.sh

0 commit comments

Comments
 (0)