diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-18 06:34:46 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-18 06:34:46 -0500 |
commit | e24504aa1fab837b6fad7e2d133b313a9665fb26 (patch) | |
tree | dd626d66088732d7a3fafb091788497e49429e97 /test/test_codeunit.py | |
parent | 688ecb98e29d9eb00e865813534e6e597c2b799d (diff) | |
download | python-coveragepy-git-e24504aa1fab837b6fad7e2d133b313a9665fb26.tar.gz |
Dur! This is a better way to indicate how the tests should run.
Diffstat (limited to 'test/test_codeunit.py')
-rw-r--r-- | test/test_codeunit.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_codeunit.py b/test/test_codeunit.py index bd8f5224..96df9633 100644 --- a/test/test_codeunit.py +++ b/test/test_codeunit.py @@ -14,8 +14,9 @@ from coveragetest import CoverageTest class CodeUnitTest(CoverageTest): """Tests for coverage.codeunit""" + run_in_temp_dir = False + def setUp(self): - self.run_in_temp_dir = False super(CodeUnitTest, self).setUp() # Parent class saves and restores sys.path, we can just modify it. testmods = self.nice_file(os.path.dirname(__file__), 'modules') |