python3Packages.datadog: unbreak, run subset of tests

This commit is contained in:
Jonathan Ringer
2024-01-05 02:49:11 +01:00
committed by Martin Weinelt
parent 9051cab202
commit 07072e248d
@@ -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";