From 7968281008dfa46f83e213a3a64eca65562086b2 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Fri, 21 May 2021 00:54:36 +0100 Subject: [PATCH] python3Packages.pydicom: disable flaky test on darwin --- pkgs/development/python-modules/pydicom/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/pydicom/default.nix b/pkgs/development/python-modules/pydicom/default.nix index 2cb89812ea5..a0924fa7f63 100644 --- a/pkgs/development/python-modules/pydicom/default.nix +++ b/pkgs/development/python-modules/pydicom/default.nix @@ -53,6 +53,9 @@ buildPythonPackage { ] ++ lib.optionals stdenv.isAarch64 [ # https://github.com/pydicom/pydicom/issues/1386 "test_array" + ] ++ lib.optionals stdenv.isDarwin [ + # flaky, hard to reproduce failure outside hydra + "test_time_check" ]; meta = with lib; {