Skip to content

Commit

Permalink
ci: Avoid deadlock when computing coverage (#1134)
Browse files Browse the repository at this point in the history
Closes #1129

Co-authored-by: Guillaume Lemaitre <[email protected]>
  • Loading branch information
augustebaum and glemaitre authored Jan 16, 2025
1 parent 3889f32 commit e6b5de8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
working-directory: skore/
run: |
mkdir coverage
python -m pytest -n auto src/ tests/ --junitxml=coverage/coverage.xml --cov-config=pyproject.toml --cov | tee coverage/coverage.txt
python -m pytest src/ tests/ --junitxml=coverage/coverage.xml --cov-config=pyproject.toml --cov | tee coverage/coverage.txt
- name: Upload coverage reports
if: ${{ matrix.coverage && (github.event_name == 'pull_request') }}
Expand Down
1 change: 0 additions & 1 deletion skore/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ doctest_optionflags = ["ELLIPSIS", "NORMALIZE_WHITESPACE"]

[tool.coverage.run]
branch = true
parallel = true
source = ["skore"]

[tool.coverage.report]
Expand Down

0 comments on commit e6b5de8

Please sign in to comment.