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` (pythonGH-111349)

(cherry picked from commit 31c05b7)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
  • Loading branch information
2 people authored and miss-islington committed Oct 26, 2023
1 parent 7cce26b commit 2d8e312
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 @@ -3318,19 +3318,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 2d8e312

Please sign in to comment.