(
self, many_tests_files, pytester: Pytester, monkeypatch
)
| 2325 | ) |
| 2326 | |
| 2327 | def test_xdist_normal( |
| 2328 | self, many_tests_files, pytester: Pytester, monkeypatch |
| 2329 | ) -> None: |
| 2330 | pytest.importorskip("xdist") |
| 2331 | monkeypatch.delenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD", raising=False) |
| 2332 | output = pytester.runpytest("-n2") |
| 2333 | output.stdout.re_match_lines([r"\.{20} \s+ \[100%\]"]) |
| 2334 | |
| 2335 | def test_xdist_normal_count( |
| 2336 | self, many_tests_files, pytester: Pytester, monkeypatch |
nothing calls this directly
no test coverage detected