Skip to content

Commit

Permalink
debugging workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianGroeger96 committed Feb 14, 2024
1 parent c77c8a7 commit d2eccfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*;"

0 comments on commit d2eccfb

Please sign in to comment.