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 81c06b3 commit ef699f8Copy full SHA for ef699f8
testing/test_config.py
@@ -1959,16 +1959,6 @@ class DummyPlugin:
1959
],
1960
)
1961
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
-
1972
p = pytester.makepyfile("def test(): pass")
1973
result = pytester.runpytest(str(p), "-pno:%s" % plugin)
1974
0 commit comments