(pytester: Pytester, source: str)
| 29 | |
| 30 | |
| 31 | def runpdb_and_get_report(pytester: Pytester, source: str): |
| 32 | result = runpdb(pytester, source) |
| 33 | reports = result.reprec.getreports("pytest_runtest_logreport") |
| 34 | assert len(reports) == 3, reports # setup/call/teardown |
| 35 | return reports[1] |
| 36 | |
| 37 | |
| 38 | @pytest.fixture |
no test coverage detected