diff --git a/doc/hacking/hacking.rst b/doc/hacking/hacking.rst index 09db2955da..d9eb847f03 100644 --- a/doc/hacking/hacking.rst +++ b/doc/hacking/hacking.rst @@ -459,7 +459,7 @@ like thus: ... $ make shell ... - $ tox -e unit-py39-django32 + $ tox run -e unit-py39-django32 ... diff --git a/tests/docker/test.sh b/tests/docker/test.sh index 0fdcab38d1..913cfe61cc 100755 --- a/tests/docker/test.sh +++ b/tests/docker/test.sh @@ -2,10 +2,10 @@ # MAIN EXECUTION POINT cd "$WORKSPACE" -tox +tox run # Code analysis steps -tox -e pylint +tox run -e pylint /count-lines-of-code.sh echo "test.sh done"