From 00491e1dcb19a795867249471ca5bb95efcd8cd3 Mon Sep 17 00:00:00 2001 From: Kaleb Barrett Date: Sat, 1 May 2021 13:47:59 -0500 Subject: [PATCH] Add ability to pass posargs to pytest run in tox.ini (#2173) --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 71b02e9..affc3c9 100644 --- a/tox.ini +++ b/tox.ini @@ -9,7 +9,7 @@ deps = commands = pip install -e .[d,python2] coverage erase - coverage run -m pytest tests + coverage run -m pytest tests {posargs} coverage report [testenv:fuzz] -- 2.39.2