Skip to content

Commit

Permalink
chore: Fix cmd params for test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
fgmacedo committed Dec 6, 2024
1 parent d6c33e4 commit 95d8289
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
#----------------------------------------------
- name: Test with pytest
run: |
uv run pytest -n auto --cov-report=xml:coverage.xml
uv run pytest -n auto --cov --cov-report=xml:coverage.xml
uv run coverage xml
#----------------------------------------------
# upload coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Test
run: |
uv run pytest -n auto
uv run pytest -n auto --cov
- name: Build
run: |
Expand Down
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,6 @@ addopts = [
"--ignore=docs/auto_examples/",
"--ignore=docs/_build/",
"--ignore=tests/examples/",
"--cov",
"--cov-config",
".coveragerc",
"--doctest-glob=*.md",
"--doctest-modules",
"--doctest-continue-on-failure",
Expand Down

0 comments on commit 95d8289

Please sign in to comment.