From d2eccfb0148c44a859a3ab2a85f1529133b5999f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=B6ger?= Date: Wed, 14 Feb 2024 17:43:46 +0100 Subject: [PATCH] debugging workflow --- .github/workflows/pytest-coverage.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest-coverage.yml b/.github/workflows/pytest-coverage.yml index 14d9333..f144be9 100644 --- a/.github/workflows/pytest-coverage.yml +++ b/.github/workflows/pytest-coverage.yml @@ -47,7 +47,7 @@ jobs: - name: Run pytest with coverage run: | - python3 -m coverage run -m pytest tests --junitxml=report.xml; coverage report -i --include=src/* + python3 -m coverage run -m pytest tests --junitxml=report.xml; coverage report -i --include=src/*; coverage xml -i --include=src/*; - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 diff --git a/Makefile b/Makefile index 83ea832..ff46671 100644 --- a/Makefile +++ b/Makefile @@ -168,4 +168,4 @@ start_jupyter: _build ##@Docker start a jupyter notebook inside the docker imag .PHONY: test test: _build ##@Test run all tests in the project # Ignore integration tests flag: --ignore=test/manual_integration_tests/ - $(DOCKER_CMD) /bin/bash -c "python3 -m coverage run -m pytest tests --junitxml=report.xml; coverage report -i --include=src/*" + $(DOCKER_CMD) /bin/bash -c "python3 -m coverage run -m pytest tests --junitxml=report.xml; coverage report -i --include=src/*; coverage xml -i --include=src/*;"