From: Serhiy Storchaka Date: Thu, 7 Sep 2023 18:28:18 +0000 (+0300) Subject: gh-68403: Fix test_coverage in test_trace (GH-108910) X-Git-Tag: v3.13.0a1~549 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e1a7abb9831965cdec477e62dbe4f8415b8a582;p=thirdparty%2FPython%2Fcpython.git gh-68403: Fix test_coverage in test_trace (GH-108910) Its behavior no longer affected by test running options such as -m. --- diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py index d1ef005a4314..c1e289bcaff9 100644 --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -360,9 +360,14 @@ class TestCoverage(unittest.TestCase): rmtree(TESTFN) unlink(TESTFN) - def _coverage(self, tracer, - cmd='import test.support, test.test_pprint;' - 'test.support.run_unittest(test.test_pprint.QueryTestCase)'): + DEFAULT_SCRIPT = '''if True: + import unittest + from test.test_pprint import QueryTestCase + loader = unittest.TestLoader() + tests = loader.loadTestsFromTestCase(QueryTestCase) + tests(unittest.TestResult()) + ''' + def _coverage(self, tracer, cmd=DEFAULT_SCRIPT): tracer.run(cmd) r = tracer.results() r.write_results(show_missing=True, summary=True, coverdir=TESTFN)