Skip to content

Commit

Permalink
pythongh-111348: Fix direct invocation of test_doctest; remove `tes…
Browse files Browse the repository at this point in the history
…t_doctest.test_coverage` (python#111349)

Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
  • Loading branch information
2 people authored and aisk committed Feb 11, 2024
1 parent b536242 commit 14aa5f5
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions Lib/test/test_doctest.py
Original file line number Diff line number Diff line change
Expand Up @@ -3362,19 +3362,5 @@ def load_tests(loader, tests, pattern):
return tests


def test_coverage(coverdir):
trace = import_helper.import_module('trace')
tracer = trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix,],
trace=0, count=1)
tracer.run('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/doctest.cover')
else:
unittest.main()
unittest.main(module='test.test_doctest')

0 comments on commit 14aa5f5

Please sign in to comment.