Skip to content

Commit 0f6c17c

Browse files
authored
Merge pull request #11654 from pytest-dev/testing-unnecessary-skip
testing: remove a no longer necessary skip
2 parents 81c06b3 + ef699f8 commit 0f6c17c

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

testing/test_config.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1959,16 +1959,6 @@ class DummyPlugin:
19591959
],
19601960
)
19611961
def test_config_blocked_default_plugins(pytester: Pytester, plugin: str) -> None:
1962-
if plugin == "debugging":
1963-
# Fixed in xdist (after 1.27.0).
1964-
# https://github.com/pytest-dev/pytest-xdist/pull/422
1965-
try:
1966-
import xdist # noqa: F401
1967-
except ImportError:
1968-
pass
1969-
else:
1970-
pytest.skip("does not work with xdist currently")
1971-
19721962
p = pytester.makepyfile("def test(): pass")
19731963
result = pytester.runpytest(str(p), "-pno:%s" % plugin)
19741964

0 commit comments

Comments
 (0)