diff --git a/Makefile b/Makefile index 3344e47e..a8843fe1 100644 --- a/Makefile +++ b/Makefile @@ -91,6 +91,7 @@ test: ${PIPRUN} python -m coverage erase ${PIPRUN} python -m coverage run -m pytest ${PIPRUN} python -m coverage report + ${PIPRUN} python -m coverage xml ######################################################################################## # Package @@ -126,7 +127,7 @@ docs-autobuild: # Generate mypy reports. docs-mypy: - ${PIPRUN} python -m mypy test src --html-report ${PUBLIC_DIR}/reports/mypy + ${PIPRUN} python -m mypy src test --html-report ${PUBLIC_DIR}/reports/mypy # Generate coverage reports. docs-coverage: diff --git a/template/Makefile.jinja b/template/Makefile.jinja index 2ec50f10..9481d4aa 100644 --- a/template/Makefile.jinja +++ b/template/Makefile.jinja @@ -93,6 +93,7 @@ test: ${PIPRUN} python -m coverage erase ${PIPRUN} python -m coverage run -m pytest ${PIPRUN} python -m coverage report + ${PIPRUN} python -m coverage xml ######################################################################################## # Package @@ -128,7 +129,7 @@ docs-autobuild: # Generate mypy reports. docs-mypy: - ${PIPRUN} python -m mypy test src --html-report ${PUBLIC_DIR}/reports/mypy + ${PIPRUN} python -m mypy src test --html-report ${PUBLIC_DIR}/reports/mypy # Generate coverage reports. docs-coverage: