Skip to content

Commit

Permalink
gh-111426: Remove test_cmd.test_coverage (#111427)
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn authored Oct 28, 2023
1 parent 81bc802 commit 66bea25
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions Lib/test/test_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,19 +248,9 @@ def load_tests(loader, tests, pattern):
tests.addTest(doctest.DocTestSuite())
return tests

def test_coverage(coverdir):
trace = support.import_module('trace')
tracer=trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix,],
trace=0, count=1)
tracer.run('import importlib; importlib.reload(cmd); test_main()')
r=tracer.results()
print("Writing coverage results...")
r.write_results(show_missing=True, summary=True, coverdir=coverdir)

if __name__ == "__main__":
if "-c" in sys.argv:
test_coverage('/tmp/cmd.cover')
elif "-i" in sys.argv:
if "-i" in sys.argv:
samplecmdclass().cmdloop()
else:
unittest.main()

0 comments on commit 66bea25

Please sign in to comment.