File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -176,6 +176,7 @@ def test_process_message_with_skipped_project(self):
176176 service_config = ServiceConfig (
177177 sentry_base_url = "http://test.sentry.io" ,
178178 projects_to_skip = ["skip-project" ],
179+ objectstore_url = "http://test.objectstore.io" ,
179180 )
180181
181182 test_message = {
@@ -196,6 +197,7 @@ def test_process_message_with_allowed_project(self):
196197 service_config = ServiceConfig (
197198 sentry_base_url = "http://test.sentry.io" ,
198199 projects_to_skip = ["other-project" ],
200+ objectstore_url = "http://test.objectstore.io" ,
199201 )
200202
201203 test_message = {
@@ -226,6 +228,7 @@ def test_process_message_error_handling(self):
226228 service_config = ServiceConfig (
227229 sentry_base_url = "http://test.sentry.io" ,
228230 projects_to_skip = [],
231+ objectstore_url = "http://test.objectstore.io" ,
229232 )
230233
231234 test_message = {
Original file line number Diff line number Diff line change 11from unittest .mock import Mock , patch
22
3- import pytest
4-
53from objectstore_client import Client as ObjectstoreClient
64from sentry_kafka_schemas .schema_types .preprod_artifact_events_v1 import (
75 PreprodArtifactEvents ,
You can’t perform that action at this time.
0 commit comments