summary refs log tree commit diff
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2018-05-30 02:43:55 +0000
committerOrivej Desh <orivej@gmx.fr>2018-05-30 02:43:55 +0000
commita7e93690afa02053373a59061f310f6f3953f254 (patch)
tree82df1748082773d675094f716a42e3d229a95d79
parent0159beb89cfa62afa14b7d8bb4a9bce3a6408eae (diff)
downloadnixpkgs-a7e93690afa02053373a59061f310f6f3953f254.tar
nixpkgs-a7e93690afa02053373a59061f310f6f3953f254.tar.gz
nixpkgs-a7e93690afa02053373a59061f310f6f3953f254.tar.bz2
nixpkgs-a7e93690afa02053373a59061f310f6f3953f254.tar.lz
nixpkgs-a7e93690afa02053373a59061f310f6f3953f254.tar.xz
nixpkgs-a7e93690afa02053373a59061f310f6f3953f254.tar.zst
nixpkgs-a7e93690afa02053373a59061f310f6f3953f254.zip
pythonPackages.rx: disable check
The tests are nondeterminstic.
-rw-r--r--pkgs/development/python-modules/rx/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/rx/default.nix b/pkgs/development/python-modules/rx/default.nix
index 6945d7486f6..7f8ba49e027 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";