(pytester: Pytester)
| 1252 | |
| 1253 | |
| 1254 | def test_fail_reporting_on_pass(pytester: Pytester) -> None: |
| 1255 | pytester.makepyfile("def test_this(): assert 1") |
| 1256 | result = pytester.runpytest("-rf") |
| 1257 | result.stdout.no_fnmatch_line("*short test summary*") |
| 1258 | |
| 1259 | |
| 1260 | def test_pass_extra_reporting(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected