From a7e93690afa02053373a59061f310f6f3953f254 Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Wed, 30 May 2018 02:43:55 +0000 Subject: [PATCH] pythonPackages.rx: disable check The tests are nondeterminstic. --- pkgs/development/python-modules/rx/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/rx/default.nix b/pkgs/development/python-modules/rx/default.nix index 6945d7486f66..7f8ba49e0274 100644 --- a/pkgs/development/python-modules/rx/default.nix +++ b/pkgs/development/python-modules/rx/default.nix @@ -14,6 +14,11 @@ buildPythonPackage rec { checkInputs = [ nose ]; + # Some tests are nondeterministic. (`grep sleep -r tests`) + # test_timeout_schedule_action_cancel: https://hydra.nixos.org/build/74954646 + # test_new_thread_scheduler_timeout: https://hydra.nixos.org/build/74949851 + doCheck = false; + meta = { homepage = https://github.com/ReactiveX/RxPY; description = "Reactive Extensions for Python";