python3Packages.sentry-sdk: disable failing tests on darwin (#520975)

This commit is contained in:
Martin Weinelt
2026-05-16 18:49:14 +00:00
committed by GitHub
@@ -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" ];