From e5f9b39025ea757af5eb59f40278de8a4ef696ec Mon Sep 17 00:00:00 2001 From: MasterofJOKers Date: Sun, 24 Feb 2019 16:00:38 +0100 Subject: [PATCH] tests: Pass additional tox args to pytest This allows to run specific tests e.g. via `tox -e py3 tests/test_servefile.py::test_serve_relative_directory`. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 0160c41..43383ed 100644 --- a/tox.ini +++ b/tox.ini @@ -5,4 +5,4 @@ envlist = py27,py36 deps = pytest requests -commands = pytest --tb=short +commands = pytest --tb=short {posargs}