From 4638a67f58c6543307c8b17646fddc261a9b1fc6 Mon Sep 17 00:00:00 2001 From: c-bata Date: Fri, 4 Dec 2020 16:32:29 +0900 Subject: [PATCH] Add posargs in tox.ini --- tox.ini | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tox.ini b/tox.ini index 980b432e..fbe8bf5d 100644 --- a/tox.ini +++ b/tox.ini @@ -10,28 +10,28 @@ envlist = [testenv:py36] basepython = python3.6 -commands = python -m unittest +commands = python -m unittest {posargs} [testenv:py37] basepython = python3.7 -commands = python -m unittest +commands = python -m unittest {posargs} [testenv:py38] basepython = python3.8 -commands = python -m unittest +commands = python -m unittest {posargs} [testenv:py39] basepython = python3.9 -commands = python -m unittest +commands = python -m unittest {posargs} [testenv:flake8] deps = flake8 -commands = flake8 . +commands = flake8 . {posargs} [testenv:black] deps = black -commands = black --check . +commands = black --check . {posargs} [testenv:mypy] deps = mypy -commands = mypy . +commands = mypy . {posargs}