diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-30 21:47:16 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-30 21:47:16 -0500 |
commit | ca84485d161434a1eb277f481c15d1fe6e65cc99 (patch) | |
tree | e8e17409fcac34c15e3ae4e66d9851bed83bff29 /test/test_farm.py | |
parent | 9d2b8a09154727bee8c2296ea5852574c22a16cb (diff) | |
download | python-coveragepy-git-ca84485d161434a1eb277f481c15d1fe6e65cc99.tar.gz |
Mark some more code as not covered by tests.
Diffstat (limited to 'test/test_farm.py')
-rw-r--r-- | test/test_farm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_farm.py b/test/test_farm.py index 859ba416..dcebbac5 100644 --- a/test/test_farm.py +++ b/test/test_farm.py @@ -80,7 +80,7 @@ class FarmTestCase(object): finally: self.cd(cwd) - def run_fully(self): + def run_fully(self): # pragma: no cover """Run as a full test case, with setUp and tearDown.""" self.setUp() try: @@ -292,7 +292,7 @@ class FarmTestCase(object): if os.path.exists(cleandir): shutil.rmtree(cleandir) -def main(): +def main(): # pragma: no cover """Command-line access to test_farm. Commands: |