about summary refs log tree commit diff
path: root/nixpkgs/pkgs/shells
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-09-14 19:08:21 +0200
committerAlyssa Ross <hi@alyssa.is>2020-11-22 14:23:06 +0000
commitd279443e897d3e28b8925fdd171c55519d7534c8 (patch)
tree629ff2a8149127f0c30c4ed6d5d4319b7225cf81 /nixpkgs/pkgs/shells
parent7fe5a760c4aafe71ce84241d6bcde717f6269fe6 (diff)
downloadnixlib-d279443e897d3e28b8925fdd171c55519d7534c8.tar
nixlib-d279443e897d3e28b8925fdd171c55519d7534c8.tar.gz
nixlib-d279443e897d3e28b8925fdd171c55519d7534c8.tar.bz2
nixlib-d279443e897d3e28b8925fdd171c55519d7534c8.tar.lz
nixlib-d279443e897d3e28b8925fdd171c55519d7534c8.tar.xz
nixlib-d279443e897d3e28b8925fdd171c55519d7534c8.tar.zst
nixlib-d279443e897d3e28b8925fdd171c55519d7534c8.zip
bash-completion: disable tests
Unfortunately, they're very flaky. Let's disable them for now.

(cherry picked from commit 3bfdbea8819989c610ef30ae1e0acf7739a74807)
Diffstat (limited to 'nixpkgs/pkgs/shells')
-rw-r--r--nixpkgs/pkgs/shells/bash/bash-completion/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixpkgs/pkgs/shells/bash/bash-completion/default.nix b/nixpkgs/pkgs/shells/bash/bash-completion/default.nix
index e5ef70e43a99..549ef4041428 100644
--- a/nixpkgs/pkgs/shells/bash/bash-completion/default.nix
+++ b/nixpkgs/pkgs/shells/bash/bash-completion/default.nix
@@ -20,7 +20,9 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ autoreconfHook ];
 
-  doCheck = !stdenv.isDarwin;
+  # tests are super flaky unfortunately, and regularily break.
+  # let's disable them for now.
+  doCheck = false;
   checkInputs = [
     # perl is assumed by perldoc completion
     perl