summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_trace.py11
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)