From: Kaleb Barrett Date: Sat, 1 May 2021 18:47:59 +0000 (-0500) Subject: Add ability to pass posargs to pytest run in tox.ini (#2173) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/00491e1dcb19a795867249471ca5bb95efcd8cd3 Add ability to pass posargs to pytest run in tox.ini (#2173) --- 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]