(request)
| 22 | |
| 23 | @pytest.fixture(autouse=True) |
| 24 | def pdb_env(request): |
| 25 | if "pytester" in request.fixturenames: |
| 26 | # Disable pdb++ with inner tests. |
| 27 | pytester = request.getfixturevalue("pytester") |
| 28 | pytester._monkeypatch.setenv("PDBPP_HIJACK_PDB", "0") |
| 29 | |
| 30 | |
| 31 | def runpdb_and_get_report(pytester: Pytester, source: str): |
nothing calls this directly
no test coverage detected