(self, pytester: Pytester)
| 37 | assert not values |
| 38 | |
| 39 | def test_teardown_exact_stack_empty(self, pytester: Pytester) -> None: |
| 40 | item = pytester.getitem("def test_func(): pass") |
| 41 | ss = item.session._setupstate |
| 42 | ss.setup(item) |
| 43 | ss.teardown_exact(None) |
| 44 | ss.teardown_exact(None) |
| 45 | ss.teardown_exact(None) |
| 46 | |
| 47 | def test_setup_fails_and_failure_is_cached(self, pytester: Pytester) -> None: |
| 48 | item = pytester.getitem( |
nothing calls this directly
no test coverage detected