diff --git a/tests/modules/testall.sh b/tests/modules/testall.sh index e6d111672..cf5ab2d03 100755 --- a/tests/modules/testall.sh +++ b/tests/modules/testall.sh @@ -12,7 +12,7 @@ cd /work pip install --no-warn-script-location --user pytest-cov PySocks pip install --no-warn-script-location --user -e '.[css,dev]' -TESTALL=1 python3 -m py.test -v --cov=. --cov-report xml \ +TESTALL=1 python3 -m pytest -v --cov=. --cov-report xml \ --alluredir=allure-data \ --tb=short -n10 --junitxml=junit.xml \ tests/modules/check_comics.py || true diff --git a/tox.ini b/tox.ini index 4e6acd7af..a79576852 100644 --- a/tox.ini +++ b/tox.ini @@ -11,7 +11,7 @@ python = [testenv] commands = - {envbindir}/py.test --tb=short \ + {envbindir}/pytest --tb=short \ --junitxml={toxworkdir}/reports/{envname}/junit.xml \ --alluredir={toxworkdir}/reports/{envname}/allure-data \ --cov={envsitepackagesdir}/dosagelib \