From 797421938925ddd8a6892e85d2c597f39c53d24b Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 19 May 2019 13:11:22 +0200 Subject: [PATCH] Make sure to pass `posargs` for Tox testenvs --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index dbfc0744..66ac7e7b 100644 --- a/tox.ini +++ b/tox.ini @@ -19,12 +19,12 @@ commands = [testenv:black] basepython = python3.7 commands = - black . + black {posargs} . [testenv:end-to-end] deps = -rtest_requirements.txt commands = - pytest tests/end-to-end + pytest {posargs} tests/end-to-end [testenv:isort] deps = {[testenv]deps}