Skip to content

Commit a05710e

Browse files
committed
refactor: remove some left over test prints
1 parent 6cc672f commit a05710e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/test_process.py

-3
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,6 @@ def foo():
817817
# Remove the file location and source line from the warning.
818818
out = re.sub(r"(?m)^[\\/\w.:~_-]+:\d+: CoverageWarning: ", "f:d: CoverageWarning: ", out)
819819
out = re.sub(r"(?m)^\s+self.warn.*$\n", "", out)
820-
print("out:", repr(out))
821820
expected = (
822821
"Run 1\n" +
823822
"Run 2\n" +
@@ -1615,7 +1614,6 @@ def path(basename):
16151614
data = coverage.CoverageData()
16161615
data.read()
16171616
summary = line_counts(data)
1618-
print(summary)
16191617
assert summary[source + '.py'] == 3
16201618
assert len(summary) == 1
16211619

@@ -1785,7 +1783,6 @@ def test_us_in_venv_isnt_measured(self, coverage_command):
17851783
r"^Not tracing .*\bexecfile.py': " +
17861784
"module 'coverage.execfile' falls outside the --source spec"
17871785
)
1788-
print(re_lines(debug_out, "myproduct"))
17891786
assert re_lines(
17901787
debug_out,
17911788
r"^Not tracing .*\bmyproduct.py': module 'myproduct' falls outside the --source spec"

0 commit comments

Comments
 (0)