From 63fd904e5dc4c7fb59fc67aa665baefb8c75ee2a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 4 Jan 2025 03:48:33 +0100 Subject: [PATCH] python313Packages.datadog: disable failing test --- .../python-modules/datadog/default.nix | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/datadog/default.nix b/pkgs/development/python-modules/datadog/default.nix index 99b9e3d4a36a..1440d815c338 100644 --- a/pkgs/development/python-modules/datadog/default.nix +++ b/pkgs/development/python-modules/datadog/default.nix @@ -9,6 +9,7 @@ pytest-vcr, pytestCheckHook, python-dateutil, + pythonAtLeast, pythonOlder, requests, vcrpy, @@ -48,11 +49,16 @@ buildPythonPackage rec { "tests/integration/api/test_*.py" ]; - disabledTests = [ - "test_default_settings_set" - # https://github.com/DataDog/datadogpy/issues/746 - "TestDogshell" - ]; + disabledTests = + [ + "test_default_settings_set" + # https://github.com/DataDog/datadogpy/issues/746 + "TestDogshell" + ] + ++ lib.optionals (pythonAtLeast "3.13") [ + # https://github.com/DataDog/datadogpy/issues/880 + "test_timed_coroutine" + ]; pythonImportsCheck = [ "datadog" ];