(pytester: Pytester)
| 349 | |
| 350 | |
| 351 | def test_SkipTest_in_test(pytester: Pytester) -> None: |
| 352 | pytester.makepyfile( |
| 353 | """ |
| 354 | import nose |
| 355 | |
| 356 | def test_skipping(): |
| 357 | raise nose.SkipTest("in test") |
| 358 | """ |
| 359 | ) |
| 360 | reprec = pytester.inline_run() |
| 361 | reprec.assertoutcome(skipped=1) |
| 362 | |
| 363 | |
| 364 | def test_istest_function_decorator(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected