Skip to content

Commit ef699f8

Browse files
committed
testing: remove a no longer necessary skip
pytest-xdist was released at 2019-02-15, seems enough time.
1 parent 81c06b3 commit ef699f8

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)