Skip to content

Commit 13a7fea

Browse files
Exclude the _temp directory when running Coverage.py
1 parent 71a6d80 commit 13a7fea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ minversion = "7"
156156

157157
[tool.coverage.run]
158158
source = [ "src" ]
159-
omit = [ "*/pytest-of-*/*", "*/.tmp*/*" ]
159+
omit = [ "*/pytest-of-*/*", "*/_temp/*" ]
160160

161161
[tool.coverage.report]
162162
exclude_also = [
@@ -167,7 +167,7 @@ exclude_also = [
167167
"class .*\\bProtocol\\):",
168168
"@(abc\\.)?abstractmethod",
169169
]
170-
omit = [ "*/pytest-of-*/*", "*/.tmp*/*" ]
170+
omit = [ "*/pytest-of-*/*", "*/_temp/*" ]
171171

172172
[tool.uv]
173173
required-version = ">=0.6.8" # Sync with README

0 commit comments

Comments
 (0)