From ecb3268d04045cd06d9a9389e1cba2fa2d598931 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 26 Dec 2021 12:07:03 +0100 Subject: [PATCH] haskellPackages.dropbox: skip ordering dependent tests --- pkgs/development/haskell-modules/configuration-common.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 99f58342109b..c25126f8b070 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2200,5 +2200,11 @@ self: super: { "-p" "!/field.unexpected-value/&&!/field.missing-field/&&!/argument.unexpected-value/&&!/argument.missing-field/" ] ++ drv.testFlags or []; }) super.morpheus-graphql-core; + # https://github.com/SupercedeTech/dropbox-client/issues/1 + dropbox = overrideCabal (drv: { + testFlags = [ + "--skip" "/Dropbox/Dropbox aeson aeson/encodes list folder correctly/" + ] ++ drv.testFlags or []; + }) super.dropbox; } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super