From d60533e5c961fd670e82d3d98f864b2f81f861c4 Mon Sep 17 00:00:00 2001 From: "devinfra-flakiness[bot]" <212413796+devinfra-flakiness[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 18:00:39 +0000 Subject: [PATCH 1/2] Skipping flaky test test_convert_span_to_item --- tests/sentry/spans/consumers/process_segments/test_convert.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/sentry/spans/consumers/process_segments/test_convert.py b/tests/sentry/spans/consumers/process_segments/test_convert.py index 3b8316a498856f..2897fd23ce4873 100644 --- a/tests/sentry/spans/consumers/process_segments/test_convert.py +++ b/tests/sentry/spans/consumers/process_segments/test_convert.py @@ -1,3 +1,4 @@ +import pytest import copy from typing import cast @@ -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)) From 74d7c6c9f5c95d8da5dbe993c780da55f0a23b02 Mon Sep 17 00:00:00 2001 From: "getsantry[bot]" <66042841+getsantry[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 18:01:46 +0000 Subject: [PATCH 2/2] :hammer_and_wrench: apply pre-commit fixes --- tests/sentry/spans/consumers/process_segments/test_convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sentry/spans/consumers/process_segments/test_convert.py b/tests/sentry/spans/consumers/process_segments/test_convert.py index 2897fd23ce4873..f6e3ad171cbfbd 100644 --- a/tests/sentry/spans/consumers/process_segments/test_convert.py +++ b/tests/sentry/spans/consumers/process_segments/test_convert.py @@ -1,8 +1,8 @@ -import pytest import copy 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