(self)
| 391 | ) |
| 392 | |
| 393 | def test_no_spider(self): |
| 394 | request = Request("https://example.com") |
| 395 | with pytest.raises(TypeError): |
| 396 | get_retry_request(request) # pylint: disable=missing-kwoa |
| 397 | |
| 398 | def test_max_retry_times_setting(self): |
| 399 | max_retry_times = 0 |
nothing calls this directly
no test coverage detected