Skip to content

Commit

Permalink
Fix coverage config (#16258)
Browse files Browse the repository at this point in the history
fixes #16255
  • Loading branch information
AlexWaygood committed Oct 13, 2023
1 parent 72605dc commit fbc48af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ xfail_strict = true

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

[tool.coverage.report]
show_missing = true
skip_covered = true
omit = 'mypy/test/*'
omit = ['mypy/test/*']
exclude_lines = [
'\#\s*pragma: no cover',
'^\s*raise AssertionError\b',
Expand Down

0 comments on commit fbc48af

Please sign in to comment.