Loose the dot in pytest's name

This commit is contained in:
Tobias Gruetzmacher 2022-12-11 21:30:33 +01:00
parent d7ac11cb6b
commit b40cde7fc8
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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 \