Skip to content
Snippets Groups Projects
Commit ac1fdd57 authored by Johannes Schumann's avatar Johannes Schumann
Browse files

Changed way of calling pytest

parent 0c6437cd
No related branches found
No related tags found
1 merge request!1Merge python environment
Pipeline #9359 failed
......@@ -44,17 +44,17 @@ install-dev:
pip install -e .
test:
py.test --junitxml=./reports/junit.xml -o junit_suite_name=$(PKGNAME) $(PKGNAME)
python -m pytest --junitxml=./reports/junit.xml -o junit_suite_name=$(PKGNAME) $(PKGNAME)
test-cov:
py.test --cov ./ --cov-report term-missing --cov-report xml:reports/coverage.xml --cov-report html:reports/coverage $(ALLNAMES)
python -m pytest --cov ./ --cov-report term-missing --cov-report xml:reports/coverage.xml --cov-report html:reports/coverage $(ALLNAMES)
flake8:
py.test --flake8
python -m pytest --flake8
docstyle:
py.test --pydocstyle
python -m pytest --pydocstyle
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment