From f9b337d15ef8ef58d3b36f29dfbec6a2afaa0fd6 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 26 Dec 2021 14:46:00 +0100 Subject: [PATCH] haskellPackages.minio-hs: disable ordering dependent test case --- 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 e6c10f725116..380ff1f9fff3 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2220,6 +2220,12 @@ self: super: { "-p" "!/asLens.set/&&!/complex.set/&&!/multipleKeys.set/" ] ++ drv.testFlags or []; }) super.aeson-quick; + # https://github.com/minio/minio-hs/issues/165 + minio-hs = overrideCabal (drv: { + testFlags = [ + "-p" "!/Test mkSelectRequest/" + ] ++ drv.testFlags or []; + }) super.minio-hs; # golden files expect an old version of hpack, so tests fail intermittently # TODO: maybe disable golden test suite altogether? this will happen again as