Skip to content

Commit 8bb00b4

Browse files
committed
Remove debug output
1 parent 5879542 commit 8bb00b4

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

noxfile.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,16 +120,13 @@ def tests(session: Session) -> None:
120120
@session(python=python_versions[0])
121121
def coverage(session: Session) -> None:
122122
"""Produce the coverage report."""
123-
args = session.posargs or ["report", "--debug=pathmap"]
123+
args = session.posargs or ["report"]
124124

125125
session.run("uv", "pip", "install", "coverage[toml]", external=True)
126126

127127
if not session.posargs and any(Path().glob(".coverage.*")):
128128
session.run("coverage", "combine", external=True)
129129

130-
# Add a debug command to see what files coverage is tracking
131-
session.run("coverage", "debug", "data", external=True)
132-
133130
session.run("coverage", *args, external=True)
134131

135132

0 commit comments

Comments
 (0)