summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-05-20 12:30:12 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-05-20 12:30:12 +0200
commiteb196dea43b1771b8452e242b4f8cdfccf4f64ad (patch)
tree97a991a18869666d06c454084d732f03ed073689
parent154ff7ecc152d899671d91e637e13627eab96e55 (diff)
downloadnixpkgs-eb196dea43b1771b8452e242b4f8cdfccf4f64ad.tar
nixpkgs-eb196dea43b1771b8452e242b4f8cdfccf4f64ad.tar.gz
nixpkgs-eb196dea43b1771b8452e242b4f8cdfccf4f64ad.tar.bz2
nixpkgs-eb196dea43b1771b8452e242b4f8cdfccf4f64ad.tar.lz
nixpkgs-eb196dea43b1771b8452e242b4f8cdfccf4f64ad.tar.xz
nixpkgs-eb196dea43b1771b8452e242b4f8cdfccf4f64ad.tar.zst
nixpkgs-eb196dea43b1771b8452e242b4f8cdfccf4f64ad.zip
haskellPackages.lsp-test: disable test suite again
I removed the `dontCheck` override accidentally when cleaning up eval
errors.
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 959409531a1..71ffe167fb4 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1944,4 +1944,7 @@ EOT
     testTarget = "test --test-options='-p \"!/[NOCI]/\"'";
   };
 
+  # Tests require to run a binary which isn't built
+  lsp-test = dontCheck super.lsp-test;
+
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super