diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-21 07:55:25 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-21 07:55:25 -0500 |
| commit | dc9ea5f181c63a3560065e4441b793a7bbb801e9 (patch) | |
| tree | 4d34c7103923653796897d455f4655ec8d2ddae2 /test | |
| parent | fdea599f61c93bd9cd9d1207fe57d3864244e45b (diff) | |
| download | python-coveragepy-dc9ea5f181c63a3560065e4441b793a7bbb801e9.tar.gz | |
Clean up debugging stuff
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_farm.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/test_farm.py b/test/test_farm.py index 418a3cf..c343e2f 100644 --- a/test/test_farm.py +++ b/test/test_farm.py @@ -7,7 +7,6 @@ sys.path.insert(0, os.path.split(__file__)[0]) # Force relative import for Py3k from backtest import run_command, execfile # pylint: disable=W0622 from coverage.control import _TEST_NAME_FILE -from coverage.misc import short_stack def test_farm(clean_only=False): @@ -95,8 +94,6 @@ class FarmTestCase(object): # Remove any new modules imported during the test run. This lets us # import the same source files for more than one test. to_del = [m for m in sys.modules if m not in old_mods] - with open(r"\foo\cov.txt", "a") as f: - print >>f, ("Deleting modules: %s, %r\n%s" % (self.description, to_del, short_stack())) for m in to_del: del sys.modules[m] |
