diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-06-03 13:49:21 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-06-03 13:49:21 -0400 |
commit | 5c55791cc9ced72ce58cffd57ccea2b3bd0b457c (patch) | |
tree | 49de0405d31a185a75c2981580648704fbe35c6a | |
parent | 91ff61eb15e632787d227a599c8202701fd642ef (diff) | |
download | python-coveragepy-git-5c55791cc9ced72ce58cffd57ccea2b3bd0b457c.tar.gz |
That didn't yield interesting info
-rw-r--r-- | tests/test_summary.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py index 8438152c..ebf9e1f4 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -27,16 +27,6 @@ class SummaryTest(CoverageTest): def make_mycode(self): """Make the mycode.py file when needed.""" self.make_file("mycode.py", """\ - import sys - if 'site' in sys.modules: - site_path = sys.modules['site'].__file__ - if site_path.endswith("c"): - site_path = site_path[:-1] - print('*** %s ************' % site_path) - print(open(site_path).read()) - print('*** <end> ************') - else: - print("*** SITE NOT IMPORTED!?") import covmod1 import covmodzip1 a = 1 |