(self, function, *args, **kwargs)
| 882 | self.tearDown() |
| 883 | |
| 884 | def _callCleanup(self, function, *args, **kwargs): |
| 885 | self._callMaybeAsync(function, *args, **kwargs) |
| 886 | |
| 887 | def _callAsync(self, func, /, *args, **kwargs): |
| 888 | assert inspect.iscoroutinefunction(func), f"{func!r} is not an async function" |
nothing calls this directly
no test coverage detected