(self, pytester, pdblist)
| 143 | assert not pdblist |
| 144 | |
| 145 | def test_pdb_on_skip(self, pytester, pdblist) -> None: |
| 146 | rep = runpdb_and_get_report( |
| 147 | pytester, |
| 148 | """ |
| 149 | import pytest |
| 150 | def test_func(): |
| 151 | pytest.skip("hello") |
| 152 | """, |
| 153 | ) |
| 154 | assert rep.skipped |
| 155 | assert len(pdblist) == 0 |
| 156 | |
| 157 | def test_pdb_on_top_level_raise_skiptest(self, pytester, pdblist) -> None: |
| 158 | stdout = runpdb_and_get_stdout( |
nothing calls this directly
no test coverage detected