summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tox.ini4
-rw-r--r--utils/tox.ini2
2 files changed, 3 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 08c3d84d0..13c87f5c4 100644
--- a/tox.ini
+++ b/tox.ini
@@ -12,8 +12,8 @@ deps =
ansible22: ansible~=2.2
commands =
- unit: pytest
- flake8: flake8
+ unit: pytest {posargs}
+ flake8: flake8 {posargs}
pylint: python setup.py lint
yamllint: python setup.py yamllint
generate_validation: python setup.py generate_validation
diff --git a/utils/tox.ini b/utils/tox.ini
index 2a29d1525..2524923cb 100644
--- a/utils/tox.ini
+++ b/utils/tox.ini
@@ -14,6 +14,6 @@ commands =
# Needed to make detox work, since it ignores usedevelop
# https://github.com/tox-dev/tox/issues/180
unit: pip install -e .
- unit: pytest
+ unit: pytest {posargs}
flake8: python setup.py flake8
pylint: python setup.py lint