Skip to content

Commit fbc48af

Browse files
authored
Fix coverage config (#16258)
fixes #16255
1 parent 72605dc commit fbc48af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@ xfail_strict = true
109109

110110
[tool.coverage.run]
111111
branch = true
112-
source = "mypy"
112+
source = ["mypy"]
113113
parallel = true
114114

115115
[tool.coverage.report]
116116
show_missing = true
117117
skip_covered = true
118-
omit = 'mypy/test/*'
118+
omit = ['mypy/test/*']
119119
exclude_lines = [
120120
'\#\s*pragma: no cover',
121121
'^\s*raise AssertionError\b',

0 commit comments

Comments
 (0)