summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorivan <ivan@grnet.gr>2017-07-12 16:09:04 +0300
committerivan <ivan@grnet.gr>2017-07-12 16:09:04 +0300
commitb4f8c5478eb750ccd491162e27dcb098ba21ddd8 (patch)
treec139affd6f2cce9cf1afcf2baee9768296c877e5 /tox.ini
parent8e96bf096e650a22057f5b5209728d023f31156e (diff)
downloadpysaml2-b4f8c5478eb750ccd491162e27dcb098ba21ddd8.tar.gz
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
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index d834512d..fcdbdde5 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,4 +3,4 @@ envlist = py27,py34
[testenv]
deps = -rtests/test_requirements.txt
-commands = py.test tests/
+commands = py.test {posargs:tests/}