summaryrefslogtreecommitdiff
path: root/tests/test_setup_command.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_setup_command.py')
-rw-r--r--tests/test_setup_command.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/test_setup_command.py b/tests/test_setup_command.py
index a56f9d4a3..ef364676c 100644
--- a/tests/test_setup_command.py
+++ b/tests/test_setup_command.py
@@ -18,10 +18,7 @@ def setup_command(request, tempdir, rootdir):
Run `setup.py build_sphinx` with args and kwargs,
pass it to the test and clean up properly.
"""
- if hasattr(request.node, 'get_closest_marker'): # pytest-3.6.0 or newer
- marker = request.node.get_closest_marker('setup_command')
- else:
- marker = request.node.get_marker('setup_command')
+ marker = request.node.get_closest_marker('setup_command')
args = marker.args if marker else []
pkgrootdir = tempdir / 'test-setup'