From 64a59a0854bef4bae6eced40a10cc757cfc99309 Mon Sep 17 00:00:00 2001 From: Alexander Krimm Date: Sat, 28 Nov 2020 18:58:39 +0100 Subject: [PATCH] vdirsyncer: disable flaky test Disables sync_test:test_create_collection, a flaky test which exceeds its deadline and breaks the build on hydra, e.g: https://hydra.nixos.org/build/130683519/nixlog/1 Upstream vdirsyncer issue: https://github.com/pimutils/vdirsyncer/issues/837 --- pkgs/development/python-modules/vdirsyncer/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/vdirsyncer/default.nix b/pkgs/development/python-modules/vdirsyncer/default.nix index 6e1dc98256702..b93050144eb63 100644 --- a/pkgs/development/python-modules/vdirsyncer/default.nix +++ b/pkgs/development/python-modules/vdirsyncer/default.nix @@ -53,7 +53,10 @@ buildPythonPackage rec { export DETERMINISTIC_TESTS=true ''; - disabledTests = [ "test_verbosity" ]; + disabledTests = [ + "test_verbosity" + "test_create_collections" # Flaky test exceeds deadline on hydra: https://github.com/pimutils/vdirsyncer/issues/837 + ]; meta = with stdenv.lib; { homepage = "https://github.com/pimutils/vdirsyncer";