(self, many_files, pytester: Pytester, monkeypatch)
| 2212 | ) |
| 2213 | |
| 2214 | def test_xdist_normal(self, many_files, pytester: Pytester, monkeypatch) -> None: |
| 2215 | pytest.importorskip("xdist") |
| 2216 | monkeypatch.delenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD", raising=False) |
| 2217 | output = pytester.runpytest("-n2") |
| 2218 | output.stdout.re_match_lines([r"[\.E]{40} \s+ \[100%\]"]) |
| 2219 | |
| 2220 | |
| 2221 | def test_skip_reasons_folding() -> None: |
nothing calls this directly
no test coverage detected