(self, pytester, pdblist)
| 121 | assert not pdblist |
| 122 | |
| 123 | def test_pdb_on_skip(self, pytester, pdblist) -> None: |
| 124 | rep = runpdb_and_get_report( |
| 125 | pytester, |
| 126 | """ |
| 127 | import pytest |
| 128 | def test_func(): |
| 129 | pytest.skip("hello") |
| 130 | """, |
| 131 | ) |
| 132 | assert rep.skipped |
| 133 | assert len(pdblist) == 0 |
| 134 | |
| 135 | def test_pdb_on_BdbQuit(self, pytester, pdblist) -> None: |
| 136 | rep = runpdb_and_get_report( |
nothing calls this directly
no test coverage detected