Skip to content

Commit

Permalink
haskell-split: disable test suite to avoid transient build failures
Browse files Browse the repository at this point in the history
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
  • Loading branch information
peti committed Apr 28, 2016
1 parent 66a224c commit a2e1692
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;

}

1 comment on commit a2e1692

@byorgey
Copy link

@byorgey byorgey commented on a2e1692 May 3, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the report. I have just released split-0.2.3.1 to Hackage which should address the issue.

Please sign in to comment.