diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-01 15:29:25 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-01 15:29:25 -0500 |
commit | b5d55bd78b613b8386e18c0c4e03782277666325 (patch) | |
tree | 729803569d08d956a15ad720c5839bb0e95fc1e9 /test/test_farm.py | |
parent | 2c84a1f03c89d1adfdf6238f03de1cb9d3c61dc2 (diff) | |
download | python-coveragepy-git-b5d55bd78b613b8386e18c0c4e03782277666325.tar.gz |
Switch to our own prama syntax, so the tests can use the std without getting mixed up.
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 f06158e4..0903a769 100644 --- a/test/test_farm.py +++ b/test/test_farm.py @@ -86,7 +86,7 @@ class FarmTestCase(object): for m in [m for m in sys.modules if m not in old_mods]: del sys.modules[m] - def run_fully(self): # pragma: no cover + def run_fully(self): # pragma: not covered """Run as a full test case, with setUp and tearDown.""" self.setUp() try: @@ -316,7 +316,7 @@ class FarmTestCase(object): break -def main(): # pragma: no cover +def main(): # pragma: not covered """Command-line access to test_farm. Commands: |