(self)
| 22 | return request.param |
| 23 | |
| 24 | def test_missing_storage_module(self): |
| 25 | with patch('celery.backends.gcs.storage', None): |
| 26 | with pytest.raises( |
| 27 | ImproperlyConfigured, match='You must install' |
| 28 | ): |
| 29 | GCSBackend(app=self.app) |
| 30 | |
| 31 | def test_missing_firestore_module(self): |
| 32 | with patch('celery.backends.gcs.firestore', None): |
nothing calls this directly
no test coverage detected