Skip to content

Commit

Permalink
Merge branch 'fix_makefile' into 'release'
Browse files Browse the repository at this point in the history
fix bug in Makefile

See merge request 3d/PandoraBox/pandora2d!88
  • Loading branch information
lecontm committed Mar 26, 2024
2 parents 14677ce + 266616d commit dd9adf6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ test-all: install test-unit test-functional test-resource test-performance ## ru
.PHONY: test-unit
test-unit: install ## run unit tests only (for dev) + coverage (source venv before)
@echo "Run unit tests"
@${PANDORA2D_VENV}/bin/pytest -m "unit_tests" --html=unit-test-report.html --cov-config=.coveragerc --cov-report xml --cov
@${PANDORA2D_VENV}/bin/pytest -m "unit_tests and not notebook_tests" --html=unit-test-report.html --cov-config=.coveragerc --cov-report xml --cov

.PHONY: test-functional
test-functional: install ## run functional tests only (for dev and validation plan)
Expand Down Expand Up @@ -195,8 +195,8 @@ clean-test:
.PHONY: clean-doc
clean-doc:
@echo "+ $@"
@rm -rf doc/build/
@rm -rf doc/sources/api_reference/
@rm -rf docs/build/
@rm -rf docs/source/api_reference/

.PHONY: clean-notebook
clean-notebook:
Expand Down

0 comments on commit dd9adf6

Please sign in to comment.