(self, result=None)
| 335 | cls._drop_db() |
| 336 | |
| 337 | def run(self, result=None): |
| 338 | # Remember result for use in tearDown and tearDownClass |
| 339 | # pytest sets result to _pytest.unittest.TestCaseFunction |
| 340 | # which does not have attributes: errors, failures |
| 341 | if isinstance(result, TestResult): |
| 342 | self.current_result = result |
| 343 | self.__class__.current_result = result |
| 344 | super(DbTestCase, self).run(result=result) |
| 345 | |
| 346 | |
| 347 | class ExecutionDbTestCase(DbTestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected