(self, category=Warning, module="")
| 530 | |
| 531 | @contextlib.contextmanager |
| 532 | def ignoreWarning(self, category=Warning, module=""): |
| 533 | with warnings.catch_warnings(): |
| 534 | warnings.filterwarnings("ignore", category=category, module=module) |
| 535 | yield |
| 536 | |
| 537 | @contextlib.contextmanager |
| 538 | def replayData(self, filename: str): |
no outgoing calls
no test coverage detected