(pytester: Pytester)
| 1266 | |
| 1267 | |
| 1268 | def test_pass_reporting_on_fail(pytester: Pytester) -> None: |
| 1269 | pytester.makepyfile("def test_this(): assert 0") |
| 1270 | result = pytester.runpytest("-rp") |
| 1271 | result.stdout.no_fnmatch_line("*short test summary*") |
| 1272 | |
| 1273 | |
| 1274 | def test_pass_output_reporting(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected