(pytester: Pytester)
| 1258 | |
| 1259 | |
| 1260 | def test_pass_extra_reporting(pytester: Pytester) -> None: |
| 1261 | pytester.makepyfile("def test_this(): assert 1") |
| 1262 | result = pytester.runpytest() |
| 1263 | result.stdout.no_fnmatch_line("*short test summary*") |
| 1264 | result = pytester.runpytest("-rp") |
| 1265 | result.stdout.fnmatch_lines(["*test summary*", "PASS*test_pass_extra_reporting*"]) |
| 1266 | |
| 1267 | |
| 1268 | def test_pass_reporting_on_fail(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected