(self)
| 29 | GCSBackend(app=self.app) |
| 30 | |
| 31 | def test_missing_firestore_module(self): |
| 32 | with patch('celery.backends.gcs.firestore', None): |
| 33 | with pytest.raises( |
| 34 | ImproperlyConfigured, match='You must install' |
| 35 | ): |
| 36 | GCSBackend(app=self.app) |
| 37 | |
| 38 | def test_missing_bucket(self): |
| 39 | self.app.conf.gcs_bucket = None |
nothing calls this directly
no test coverage detected