(self)
| 395 | scheduler.open(spider) |
| 396 | |
| 397 | def test_incompatibility(self): |
| 398 | with warnings.catch_warnings(): |
| 399 | warnings.filterwarnings("ignore") |
| 400 | with pytest.raises( |
| 401 | ValueError, match="does not support CONCURRENT_REQUESTS_PER_IP" |
| 402 | ): |
| 403 | self._incompatible() |
nothing calls this directly
no test coverage detected