test that decorator frames can be skipped.
()
| 477 | @pytest.mark.skip(reason="recently fail for unknown reason on CI") |
| 478 | @skip_win32 |
| 479 | def test_decorator_skip(): |
| 480 | """test that decorator frames can be skipped.""" |
| 481 | |
| 482 | child = _decorator_skip_setup() |
| 483 | |
| 484 | child.expect_exact("ipython-input-8") |
| 485 | child.expect_exact("3 bar(3, 4)") |
| 486 | child.expect("ipdb>") |
| 487 | |
| 488 | child.expect("ipdb>") |
| 489 | child.sendline("step") |
| 490 | child.expect_exact("step") |
| 491 | child.expect_exact("--Call--") |
| 492 | child.expect_exact("ipython-input-6") |
| 493 | |
| 494 | child.expect_exact("1 @pdb_skipped_decorator") |
| 495 | |
| 496 | child.sendline("s") |
| 497 | child.expect_exact("return x * y") |
| 498 | |
| 499 | child.close() |
| 500 | |
| 501 | |
| 502 | @pytest.mark.skip(reason="recently fail for unknown reason on CI") |
nothing calls this directly
no test coverage detected
searching dependent graphs…