summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2019-02-06 17:55:12 -0500
committerworldofpeace <worldofpeace@users.noreply.github.com>2019-02-06 18:07:22 -0500
commit884f7ad3cf87455b283ba0a47a9e873bb84ced7b (patch)
tree22e21be5f0590ab4801ac27d07753b3f7898d073 /pkgs/desktops/gnome-3
parentde79d418ba7b242bebed9965e9595efa26150673 (diff)
downloadnixpkgs-884f7ad3cf87455b283ba0a47a9e873bb84ced7b.tar
nixpkgs-884f7ad3cf87455b283ba0a47a9e873bb84ced7b.tar.gz
nixpkgs-884f7ad3cf87455b283ba0a47a9e873bb84ced7b.tar.bz2
nixpkgs-884f7ad3cf87455b283ba0a47a9e873bb84ced7b.tar.lz
nixpkgs-884f7ad3cf87455b283ba0a47a9e873bb84ced7b.tar.xz
nixpkgs-884f7ad3cf87455b283ba0a47a9e873bb84ced7b.tar.zst
nixpkgs-884f7ad3cf87455b283ba0a47a9e873bb84ced7b.zip
gnome3.gnome-keyring: disable test suite
Seen these fail non-deterministically at a high enough frequency
making it a good contender to disable completely.

See also #55293, #51121.

cc @hedning @jtojnar
Diffstat (limited to 'pkgs/desktops/gnome-3')
-rw-r--r--pkgs/desktops/gnome-3/core/gnome-keyring/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix b/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix
index 1e3e98cba73..51ed38836f3 100644
--- a/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-keyring/default.nix
@@ -31,7 +31,11 @@ stdenv.mkDerivation rec {
     patchShebangs build
   '';
 
-  doCheck = !stdenv.isi686; # https://github.com/NixOS/nixpkgs/issues/51121
+  # Tends to fail non-deterministically.
+  # - https://github.com/NixOS/nixpkgs/issues/55293
+  # - https://github.com/NixOS/nixpkgs/issues/51121
+  doCheck = false;
+
   # In 3.20.1, tests do not support Python 3
   checkInputs = [ dbus python2 ];