We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 872320e commit af052cbCopy full SHA for af052cb
tests/conftest.py
@@ -38,7 +38,8 @@
38
IS_PERF_TRAMPOLINE_SUPPORTED, reason="perf trampoline is supported"
39
)
40
41
-IS_PYTEST_XDIST_INSTALLED = importlib.util.find_spec("pytest_xdist") is not None
+# The name for the pytest-xdist plugin is just "xdist"
42
+IS_PYTEST_XDIST_INSTALLED = importlib.util.find_spec("xdist") is not None
43
skip_without_pytest_xdist = pytest.mark.skipif(
44
not IS_PYTEST_XDIST_INSTALLED,
45
reason="pytest_xdist not installed",
0 commit comments