diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2011-06-01 08:19:46 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-06-01 08:19:46 -0400 |
commit | d2ef0b1e323c85e9a7fc3782bc4d5cd5511d9a74 (patch) | |
tree | 6d0449fc5a693b23e7de841782fc1ef6152a7738 /test/test_api.py | |
parent | 9712533c72501df0161fcb7cd8219da21104e9d6 (diff) | |
download | python-coveragepy-git-d2ef0b1e323c85e9a7fc3782bc4d5cd5511d9a74.tar.gz |
Move some test modules to keep them out of pylint's hair.
--HG--
rename : test/othermods/__init__.py => test/moremodules/othermods/__init__.py
rename : test/othermods/othera.py => test/moremodules/othermods/othera.py
rename : test/othermods/otherb.py => test/moremodules/othermods/otherb.py
rename : test/othermods/sub/__init__.py => test/moremodules/othermods/sub/__init__.py
rename : test/othermods/sub/osa.py => test/moremodules/othermods/sub/osa.py
rename : test/othermods/sub/osb.py => test/moremodules/othermods/sub/osb.py
Diffstat (limited to 'test/test_api.py')
-rw-r--r-- | test/test_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_api.py b/test/test_api.py index ae31404d..1805c39c 100644 --- a/test/test_api.py +++ b/test/test_api.py @@ -337,10 +337,10 @@ class SourceOmitIncludeTest(CoverageTest): def setUp(self): super(SourceOmitIncludeTest, self).setUp() # Parent class saves and restores sys.path, we can just modify it. - #sys.path.append(self.nice_file(os.path.dirname(__file__), 'modules')) self.old_dir = os.getcwd() os.chdir(self.nice_file(os.path.dirname(__file__), 'modules')) sys.path.append(".") + sys.path.append("../moremodules") def tearDown(self): os.chdir(self.old_dir) |