Skip to content

Commit

Permalink
chore(Makefile): remove unneeded reports creation for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mkniewallner committed Sep 24, 2021
1 parent 1bd5252 commit 0ff0b43
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,10 @@ style: check-format check-import

.PHONY: test-unit
test-unit: clean
mkdir -p reports
pytest -s tests/unit --junitxml=reports/report_unit_tests.xml --cov . --cov-config .coveragerc --cov-report term-missing --cov-report xml:reports/coverage_unit.xml $(EXTRA_ARGS)

.PHONY: test-functional
test-functional: clean
mkdir -p reports
pytest -n auto tests/functional --junitxml=reports/report_func_tests.xml --cov . --cov-config .coveragerc --cov-report term-missing --cov-report xml:reports/coverage_func.xml $(EXTRA_ARGS)

.PHONY: test
Expand Down

0 comments on commit 0ff0b43

Please sign in to comment.