diff options
author | Stephen Finucane <stephen@that.guru> | 2020-04-09 17:35:56 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2020-04-09 17:36:53 +0100 |
commit | f71f5ee115ed23054acb759cd48d1d564cd54bd0 (patch) | |
tree | 23b91f5cfe7e3cf636f0fc667cce46f2dbea7aaa | |
parent | a2b08509275be5ab08d61e54fa2e430cef0b3442 (diff) | |
download | patchwork-f71f5ee115ed23054acb759cd48d1d564cd54bd0.tar patchwork-f71f5ee115ed23054acb759cd48d1d564cd54bd0.tar.gz |
tox: Remove quotes around posargs
This was preventing us from doing e.g.:
tox -e py36-django30 -- patchwork -v 2
Signed-off-by: Stephen Finucane <stephen@that.guru>
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ passenv = PW_TEST_DB_TYPE PW_TEST_DB_USER PW_TEST_DB_PASS PW_TEST_DB_HOST PW_TEST_DB_PORT commands = - python {toxinidir}/manage.py test --noinput '{posargs:patchwork}' + python {toxinidir}/manage.py test --noinput {posargs:patchwork} [testenv:bashate] deps = bashate |