diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-09-08 13:25:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 13:25:18 (GMT) |
commit | 68ba35eecbb493d3f24a82eda5ba3cb89bcda4e5 (patch) | |
tree | 8ca6523a4fb897cec03a82bf215af8563988e88d /Lib/test/test_trace.py | |
parent | 41ff5b0674fce5a6c5c6841634ff90ffe19694a8 (diff) | |
download | cpython-68ba35eecbb493d3f24a82eda5ba3cb89bcda4e5.zip cpython-68ba35eecbb493d3f24a82eda5ba3cb89bcda4e5.tar.gz cpython-68ba35eecbb493d3f24a82eda5ba3cb89bcda4e5.tar.bz2 |
[3.12] gh-68403: Fix test_coverage in test_trace (GH-108910) (#109104)
gh-68403: Fix test_coverage in test_trace (GH-108910)
Its behavior no longer affected by test running options such as -m.
(cherry picked from commit 7e1a7abb9831965cdec477e62dbe4f8415b8a582)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Lib/test/test_trace.py')
-rw-r--r-- | Lib/test/test_trace.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py index d1ef005..c1e289b 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) |