(self)
| 1160 | self.check_executed_tests(output, tests, stats=stats) |
| 1161 | |
| 1162 | def test_interrupted(self): |
| 1163 | code = TEST_INTERRUPTED |
| 1164 | test = self.create_test('sigint', code=code) |
| 1165 | output = self.run_tests(test, exitcode=EXITCODE_INTERRUPTED) |
| 1166 | self.check_executed_tests(output, test, omitted=test, |
| 1167 | interrupted=True, stats=0) |
| 1168 | |
| 1169 | def test_slowest(self): |
| 1170 | # test --slowest |
nothing calls this directly
no test coverage detected