python3Packages.datadog: unbreak, run subset of tests

This commit is contained in:
Jonathan Ringer 2024-01-03 17:39:09 -08:00 committed by Martin Weinelt
parent 9051cab202
commit 07072e248d

View File

@ -48,11 +48,12 @@ buildPythonPackage rec {
disabledTestPaths = [
"tests/performance"
# https://github.com/DataDog/datadogpy/issues/800
"tests/integration/api/test_*.py"
];
disabledTests = [
"test_default_settings_set"
] ++ lib.optionals (pythonAtLeast "3.11") [
# https://github.com/DataDog/datadogpy/issues/746
"TestDogshell"
];
@ -62,7 +63,6 @@ buildPythonPackage rec {
];
meta = with lib; {
broken = true; # https://github.com/DataDog/datadogpy/issues/800
description = "The Datadog Python library";
homepage = "https://github.com/DataDog/datadogpy";
changelog = "https://github.com/DataDog/datadogpy/blob/v${version}/CHANGELOG.md";