(pytester: Pytester, source: str)
| 19 | |
| 20 | |
| 21 | def runpdb(pytester: Pytester, source: str): |
| 22 | p = pytester.makepyfile(source) |
| 23 | return pytester.runpytest_inprocess("--pdb", p) |
| 24 | |
| 25 | |
| 26 | def runpdb_and_get_stdout(pytester: Pytester, source: str): |
no test coverage detected