(self, many_files, pytester: Pytester, monkeypatch)
| 2511 | ) |
| 2512 | |
| 2513 | def test_xdist_normal(self, many_files, pytester: Pytester, monkeypatch) -> None: |
| 2514 | pytest.importorskip("xdist") |
| 2515 | monkeypatch.delenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD", raising=False) |
| 2516 | output = pytester.runpytest("-n2") |
| 2517 | output.stdout.re_match_lines([r"[\.E]{40} \s+ \[100%\]"]) |
| 2518 | |
| 2519 | |
| 2520 | def test_skip_reasons_folding() -> None: |
nothing calls this directly
no test coverage detected