From 2e9a5fb4c7a81d86779656946d19693a6a418650 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 16 May 2026 17:22:55 +0200 Subject: [PATCH] python3Packages.sentry-sdk: disable failing tests on darwin --- .../development/python-modules/sentry-sdk/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/sentry-sdk/default.nix b/pkgs/development/python-modules/sentry-sdk/default.nix index aac63e40f1de..16930a0c7b9d 100644 --- a/pkgs/development/python-modules/sentry-sdk/default.nix +++ b/pkgs/development/python-modules/sentry-sdk/default.nix @@ -223,12 +223,11 @@ buildPythonPackage (finalAttrs: { "test_span_templates_ai_dicts" "test_span_templates_ai_objects" ] - ++ - lib.optionals (pythonAtLeast "3.14" && stdenv.hostPlatform.isx86_64 && stdenv.hostPlatform.isDarwin) - [ - # profiler_id not populated on darwin - "test_segment_span_has_profiler_id" - ]; + ++ lib.optionals (pythonAtLeast "3.14" && stdenv.hostPlatform.isDarwin) [ + # profiler_id not populated on darwin + "test_profile_stops_when_segment_ends" + "test_segment_span_has_profiler_id" + ]; pythonImportsCheck = [ "sentry_sdk" ];