summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-05-21 00:54:36 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-21 19:52:57 -0700
commit7968281008dfa46f83e213a3a64eca65562086b2 (patch)
treeee24eb42b0761d851c47a7f4ad72884b5407535c
parent872992ffced3a6f4984ce419b131a2fdc71db610 (diff)
downloadnixpkgs-7968281008dfa46f83e213a3a64eca65562086b2.tar
nixpkgs-7968281008dfa46f83e213a3a64eca65562086b2.tar.gz
nixpkgs-7968281008dfa46f83e213a3a64eca65562086b2.tar.bz2
nixpkgs-7968281008dfa46f83e213a3a64eca65562086b2.tar.lz
nixpkgs-7968281008dfa46f83e213a3a64eca65562086b2.tar.xz
nixpkgs-7968281008dfa46f83e213a3a64eca65562086b2.tar.zst
nixpkgs-7968281008dfa46f83e213a3a64eca65562086b2.zip
python3Packages.pydicom: disable flaky test on darwin
-rw-r--r--pkgs/development/python-modules/pydicom/default.nix3
1 files changed, 3 insertions, 0 deletions
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; {