From a2e1692730537ee5b8cbcabdd47dbc10ad2a7383 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Apr 2016 11:59:13 +0200 Subject: [PATCH] haskell-split: disable test suite to avoid transient build failures We have frequent build failures of "split" because the QuickCheck testsuite cannot generate enough conclusive test cases, i.e. in https://hydra.nixos.org/build/34857780/nixlog/1/raw Cc: @byorgey --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index ecae4cb8eb61..363ddcbea886 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1010,4 +1010,8 @@ self: super: { # tinc is a new build driver a la Stack that's not yet available from Hackage. tinc = self.callPackage ../tools/haskell/tinc {}; + # Avoid transient build failures because the QuickCheck testsuite cannot + # generate enough conclusive test cases. + split = dontCheck super.split; + }