From 1237b165d83c1844617915ed5635f731a7a6bc74 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 10 Jan 2016 13:50:25 +0100 Subject: [PATCH] pythonPackages.tqdm: disable tests because of to transient failures Many transient failures in performance tests and due to use of sleep. --- pkgs/top-level/python-packages.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7b4726cd55f..249b000f44e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19383,15 +19383,12 @@ in modules // { buildInputs = with self; [ nose coverage pkgs.glibcLocales flake8 ]; propagatedBuildInputs = with self; [ matplotlib pandas ]; - # Performance test fails - prePatch = '' - rm tqdm/tests/tests_perf.py - ''; - preBuild = '' export LC_ALL="en_US.UTF-8" ''; + doCheck = false; # Many transient failures in performance tests and due to use of sleep + meta = { description = "A Fast, Extensible Progress Meter"; homepage = https://github.com/tqdm/tqdm;