Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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))

Expand Down
Loading