summaryrefslogtreecommitdiff
path: root/test/test_api.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-06-01 08:19:46 -0400
committerNed Batchelder <ned@nedbatchelder.com>2011-06-01 08:19:46 -0400
commit8bcc7a31b38ea0ddd2b139834d8860e681658008 (patch)
tree5dc30d415c8b11c4e95b1eac2e04989fc9df1b13 /test/test_api.py
parent436f9067dd78373555b6ab12db9c20406467eabb (diff)
downloadpython-coveragepy-8bcc7a31b38ea0ddd2b139834d8860e681658008.tar.gz
Move some test modules to keep them out of pylint's hair.
Diffstat (limited to 'test/test_api.py')
-rw-r--r--test/test_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_api.py b/test/test_api.py
index ae31404..1805c39 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)