(
self, many_tests_files, pytester: Pytester, monkeypatch
)
| 2064 | ) |
| 2065 | |
| 2066 | def test_xdist_normal( |
| 2067 | self, many_tests_files, pytester: Pytester, monkeypatch |
| 2068 | ) -> None: |
| 2069 | pytest.importorskip("xdist") |
| 2070 | monkeypatch.delenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD", raising=False) |
| 2071 | output = pytester.runpytest("-n2") |
| 2072 | output.stdout.re_match_lines([r"\.{20} \s+ \[100%\]"]) |
| 2073 | |
| 2074 | def test_xdist_normal_count( |
| 2075 | self, many_tests_files, pytester: Pytester, monkeypatch |
nothing calls this directly
no test coverage detected