about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-10-24 22:07:17 +0200
committerGitHub <noreply@github.com>2019-10-24 22:07:17 +0200
commitb80d3570ce63c615dca747408f7ed1a3127d15c6 (patch)
tree1b3f8e6028b1ea08013f499a926151fe1db01925
parent35f1e575310d2b8b2ac13c65cbdad25c9b94fa75 (diff)
parentc41bbefd80d48938e18ae57a101a6cc26d6eb579 (diff)
downloadnixlib-b80d3570ce63c615dca747408f7ed1a3127d15c6.tar
nixlib-b80d3570ce63c615dca747408f7ed1a3127d15c6.tar.gz
nixlib-b80d3570ce63c615dca747408f7ed1a3127d15c6.tar.bz2
nixlib-b80d3570ce63c615dca747408f7ed1a3127d15c6.tar.lz
nixlib-b80d3570ce63c615dca747408f7ed1a3127d15c6.tar.xz
nixlib-b80d3570ce63c615dca747408f7ed1a3127d15c6.tar.zst
nixlib-b80d3570ce63c615dca747408f7ed1a3127d15c6.zip
Merge pull request #71944 from cdepillabout/disable-polysemy-tests
haskellPackages.polysemy: disable polysemy tests
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index e32039ee279b..8bea3fc73d71 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1272,4 +1272,8 @@ self: super: {
   # upstream issue: https://github.com/vmchale/atspkg/issues/12
   language-ats = dontCheck super.language-ats;
 
+  # polysemy has occasional test failures from what looks like buggy async tests.
+  # We think this will probably be fixed when updating to the polysemy version in LTS-15.
+  polysemy = dontCheck super.polysemy;
+
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super