diff --git a/tests/sentry/spans/consumers/process_segments/test_convert.py b/tests/sentry/spans/consumers/process_segments/test_convert.py index 3b8316a498856f..f6e3ad171cbfbd 100644 --- a/tests/sentry/spans/consumers/process_segments/test_convert.py +++ b/tests/sentry/spans/consumers/process_segments/test_convert.py @@ -2,6 +2,7 @@ from typing import cast import orjson +import pytest from google.protobuf.timestamp_pb2 import Timestamp from sentry_kafka_schemas.schema_types.ingest_spans_v1 import SpanEvent from sentry_protos.snuba.v1.request_common_pb2 import TraceItemType @@ -89,6 +90,7 @@ } +@pytest.mark.skip(reason="flaky: #104779") def test_convert_span_to_item() -> None: item = convert_span_to_item(cast(CompatibleSpan, SPAN_KAFKA_MESSAGE))