Skip to content

Commit

Permalink
Trying to fix pytest ci coverage options.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwaroquiers committed Mar 12, 2024
1 parent 9c55b18 commit 9b30b1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ jobs:

- name: Run pytest
shell: bash
run: pytest --strict-markers -m 'not integration' --cov=turbomoleio --cov-config=pyproject.toml --cov-report term
run: pytest -m 'not integration'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ line_length = 88

[tool.pytest.ini_options]
minversion = "6.1.2"
addopts = "--strict-markers --cov=turbomoleio --cov-config=pyproject.toml --cov-report html --cov-report term"
addopts = "--strict-markers --cov=turbomoleio --cov-config=pyproject.toml --cov-report=html --cov-report=term"
markers = [
"unit: Unit tests on small portions of the code that do not require execution of external code.",
"integration: Integration tests that require running turbomole executables.",
Expand Down

0 comments on commit 9b30b1b

Please sign in to comment.