(self, many_tests_files, pytester: Pytester)
| 2022 | ) |
| 2023 | |
| 2024 | def test_count(self, many_tests_files, pytester: Pytester) -> None: |
| 2025 | pytester.makeini( |
| 2026 | """ |
| 2027 | [pytest] |
| 2028 | console_output_style = count |
| 2029 | """ |
| 2030 | ) |
| 2031 | output = pytester.runpytest() |
| 2032 | output.stdout.re_match_lines( |
| 2033 | [ |
| 2034 | r"test_bar.py \.{10} \s+ \[10/20\]", |
| 2035 | r"test_foo.py \.{5} \s+ \[15/20\]", |
| 2036 | r"test_foobar.py \.{5} \s+ \[20/20\]", |
| 2037 | ] |
| 2038 | ) |
| 2039 | |
| 2040 | def test_verbose(self, many_tests_files, pytester: Pytester) -> None: |
| 2041 | output = pytester.runpytest("-v") |
nothing calls this directly
no test coverage detected