From 90b42606444099078a78da100b9611f34fedc50d Mon Sep 17 00:00:00 2001 From: Will Kahn-Greene Date: Thu, 23 Feb 2017 10:39:49 -0500 Subject: [PATCH] Fix tox.ini to allow specifying pytest tests 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. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index da64de71..43528d0c 100644 --- a/tox.ini +++ b/tox.ini @@ -13,5 +13,5 @@ deps = optional: -r{toxinidir}/requirements-optional.txt commands = - {envbindir}/py.test + {envbindir}/py.test {posargs} {toxinidir}/flake8-run.sh