(
self, many_tests_files, pytester: Pytester, monkeypatch
)
| 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 |
| 2337 | ) -> None: |
| 2338 | pytest.importorskip("xdist") |
| 2339 | monkeypatch.delenv("PYTEST_DISABLE_PLUGIN_AUTOLOAD", raising=False) |
| 2340 | pytester.makeini( |
| 2341 | """ |
| 2342 | [pytest] |
| 2343 | console_output_style = count |
| 2344 | """ |
| 2345 | ) |
| 2346 | output = pytester.runpytest("-n2") |
| 2347 | output.stdout.re_match_lines([r"\.{20} \s+ \[20/20\]"]) |
| 2348 | |
| 2349 | def test_xdist_verbose( |
| 2350 | self, many_tests_files, pytester: Pytester, monkeypatch |
nothing calls this directly
no test coverage detected