summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 9fb48e85..a23931a5 100644
--- a/tests/test_farm.py
+++ b/tests/test_farm.py
@@ -148,7 +148,7 @@ def noop(*args_unused, **kwargs_unused):
def copy(src, dst):
"""Copy a directory."""
if os.path.exists(dst):
- pytest.fail('%s already exists.' % os.path.join(os.getcwd(), dst))
+ pytest.fail('%s already exists.' % os.path.join(os.getcwd(), dst)) # pragma: only failure
shutil.copytree(src, dst)