summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2024-01-03 17:39:09 -0800
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-01-05 01:49:39 +0000
commit6bd4783dab919a893a79bbad493de2c05a697eb7 (patch)
treef947c15b37b7a61cd6e16718bb1563b9e5dd3348
parentMerge pull request #278792 from NixOS/backport-273125-to-release-23.11 (diff)
downloadnixpkgs-6bd4783dab919a893a79bbad493de2c05a697eb7.tar.gz
python3Packages.datadog: unbreak, run subset of tests
(cherry picked from commit f69a31614e0d6865f3c87ae6fcad10edac66a70e)
-rw-r--r--pkgs/development/python-modules/datadog/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/datadog/default.nix b/pkgs/development/python-modules/datadog/default.nix
index 311e4a0090b0..9c314e6ea09a 100644
--- a/pkgs/development/python-modules/datadog/default.nix
+++ b/pkgs/development/python-modules/datadog/default.nix
@@ -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";