(self)
| 366 | self.do_test_default_behaviour(retry, response) |
| 367 | |
| 368 | def test_403_with_non_retryable_error(self): |
| 369 | retry = github.GithubRetry(total=3) |
| 370 | with self.assertRaises(github.BadUserAgentException): |
| 371 | retry.increment( |
| 372 | "TEST", |
| 373 | "URL", |
| 374 | self.response_func('{"message":"Missing or invalid User Agent string."}')(), |
| 375 | ) |
| 376 | |
| 377 | def test_misc_response(self): |
| 378 | retry = github.GithubRetry(total=3) |
nothing calls this directly
no test coverage detected