Add finalizer/teardown function to be called after the last test within the requesting test context finished execution.
(self, finalizer: Callable[[], object])
| 790 | return f"<SubRequest {self.fixturename!r} for {self._pyfuncitem!r}>" |
| 791 | |
| 792 | def addfinalizer(self, finalizer: Callable[[], object]) -> None: |
| 793 | """Add finalizer/teardown function to be called after the last test |
| 794 | within the requesting test context finished execution.""" |
| 795 | self._fixturedef.addfinalizer(finalizer) |
| 796 | |
| 797 | def _schedule_finalizers( |
| 798 | self, fixturedef: "FixtureDef[object]", subrequest: "SubRequest" |
no outgoing calls
no test coverage detected