summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorMatt Wittmann <mcwitt@gmail.com>2021-01-14 08:33:46 -0800
committerEmery Hemingway <ehmry@posteo.net>2021-01-14 18:00:57 +0100
commit497544f4c28d725774ad5021a4952d85d04d218e (patch)
tree1556cd8f1ce2ce898d403b099c7aa8424a2a056c /pkgs/development/haskell-modules/configuration-common.nix
parent8eb0bdc1469330393b5c682a57a8b43df33ba9b6 (diff)
downloadnixpkgs-497544f4c28d725774ad5021a4952d85d04d218e.tar
nixpkgs-497544f4c28d725774ad5021a4952d85d04d218e.tar.gz
nixpkgs-497544f4c28d725774ad5021a4952d85d04d218e.tar.bz2
nixpkgs-497544f4c28d725774ad5021a4952d85d04d218e.tar.lz
nixpkgs-497544f4c28d725774ad5021a4952d85d04d218e.tar.xz
nixpkgs-497544f4c28d725774ad5021a4952d85d04d218e.tar.zst
nixpkgs-497544f4c28d725774ad5021a4952d85d04d218e.zip
haskellPackages.tasty-expected-failure: disable failing tests
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-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 cf58d55a7a2..f612b72b787 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -521,6 +521,10 @@ self: super: {
      then self.buildHaskellPackages.tasty-discover
      else dontCheck super.tasty-discover);
 
+  # Known issue with nondeterministic test suite failure
+  # https://github.com/nomeata/tasty-expected-failure/issues/21
+  tasty-expected-failure = dontCheck super.tasty-expected-failure;
+
   # Waiting on https://github.com/RaphaelJ/friday/pull/36
   friday = doJailbreak super.friday;