(self, testcase: "unittest.TestCase", reason: str)
| 253 | self._addexcinfo(rawexcinfo) |
| 254 | |
| 255 | def addSkip(self, testcase: "unittest.TestCase", reason: str) -> None: |
| 256 | try: |
| 257 | raise pytest.skip.Exception(reason, _use_item_location=True) |
| 258 | except skip.Exception: |
| 259 | self._addexcinfo(sys.exc_info()) |
| 260 | |
| 261 | def addExpectedFailure( |
| 262 | self, |
nothing calls this directly
no test coverage detected