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
This commit is contained in:
worldofpeace 2019-02-06 17:55:12 -05:00
parent de79d418ba
commit 884f7ad3cf

View file

@ -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 ];