From bb72482cc3eb6f6604641a246ce26bc8c3dff627 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Tue, 15 Mar 2022 14:14:49 +0100 Subject: [PATCH] haskell-language-server: Disable more flaky tests --- pkgs/development/haskell-modules/configuration-nix.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 0bd36d6503a3..85dcf36f1c1f 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -975,7 +975,6 @@ self: super: builtins.intersectAttrs super { { inherit (super) hls-brittany-plugin - hls-call-hierarchy-plugin hls-eval-plugin hls-floskell-plugin hls-fourmolu-plugin @@ -983,7 +982,6 @@ self: super: builtins.intersectAttrs super { hls-ormolu-plugin hls-pragmas-plugin hls-rename-plugin - hls-selection-range-plugin hls-splice-plugin; # Tests have file permissions expections that don‘t work with the nix store. hls-stylish-haskell-plugin = dontCheck super.hls-stylish-haskell-plugin; @@ -995,4 +993,6 @@ self: super: builtins.intersectAttrs super { hls-qualify-imported-names-plugin = dontCheck super.hls-qualify-imported-names-plugin; hls-haddock-comments-plugin = dontCheck super.hls-haddock-comments-plugin; hls-tactics-plugin = dontCheck super.hls-tactics-plugin; + hls-call-hierarchy-plugin = dontCheck super.hls-call-hierarchy-plugin; + hls-selection-range-plugin = dontCheck super.hls-selection-range-plugin; }