Skip to content

Commit 61a85a1

Browse files
committed
test.support: Test stats are now printed by TestRunner.run().
1 parent 82386e8 commit 61a85a1

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test.support/test/support.py

-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ def run_unittest(*classes):
1313
suite.addTest(c)
1414
runner = unittest.TestRunner()
1515
result = runner.run(suite)
16-
msg = "Ran %d tests" % result.testsRun
17-
if result.skippedNum > 0:
18-
msg += " (%d skipped)" % result.skippedNum
19-
print(msg)
2016

2117
def can_symlink():
2218
return False

0 commit comments

Comments
 (0)