summaryrefslogtreecommitdiff
path: root/tests/test_farm.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-05-31 10:50:38 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-05-31 10:50:38 -0400
commite55230592085af75fc0cb7b2fba66cf82cefc6a4 (patch)
tree4a57b8b75b2ce44beddf2c3ba98c7857fc0442d0 /tests/test_farm.py
parent0e95e6a0d931e4c6eede9b81ff2f2bf94bca2b75 (diff)
downloadpython-coveragepy-e55230592085af75fc0cb7b2fba66cf82cefc6a4.tar.gz
A few cleanups
Diffstat (limited to 'tests/test_farm.py')
-rw-r--r--tests/test_farm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_farm.py b/tests/test_farm.py
index 1b52bc2..8368126 100644
--- a/tests/test_farm.py
+++ b/tests/test_farm.py
@@ -103,7 +103,7 @@ class FarmTestCase(ModuleAwareMixin, SysPathAwareMixin, unittest.TestCase):
"""Here to make unittest.TestCase happy, but will never be invoked."""
raise Exception("runTest isn't used in this class!")
- def __call__(self):
+ def __call__(self): # pylint: disable=arguments-differ
"""Execute the test from the run.py file."""
if _TEST_NAME_FILE: # pragma: debugging
with open(_TEST_NAME_FILE, "w") as f: