about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiomultiprocess
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-06-04 05:26:53 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-06-05 03:59:21 +0200
commitc8261a34f80d67223589a498bc0acd4713ab21b3 (patch)
treebd10f2a0a70ac13cef17492001f3a58affdffd6f /pkgs/development/python-modules/aiomultiprocess
parent6f1857f2f2d12dcc7e46bff55540af1dcae578c6 (diff)
python3Packages.aiomultiprocess: disable failing tests
These tests fail from time to time and bring the whole test suite to a
timeout.

https://github.com/omnilib/aiomultiprocess/issues/97
Diffstat (limited to 'pkgs/development/python-modules/aiomultiprocess')
-rw-r--r--pkgs/development/python-modules/aiomultiprocess/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/aiomultiprocess/default.nix b/pkgs/development/python-modules/aiomultiprocess/default.nix
index 7b84996a1c915..6403f396eaac9 100644
--- a/pkgs/development/python-modules/aiomultiprocess/default.nix
+++ b/pkgs/development/python-modules/aiomultiprocess/default.nix
@@ -24,6 +24,14 @@ buildPythonPackage rec {
   checkInputs = [ pytestCheckHook ];
 
   pytestFlagsArray = [ "aiomultiprocess/tests/*.py" ];
+
+  disabledTests = [
+    # tests are flaky and make the whole test suite time out
+    "test_pool_worker_exceptions"
+    "test_pool_worker_max_tasks"
+    "test_pool_worker_stop"
+  ];
+
   pythonImportsCheck = [ "aiomultiprocess" ];
 
   meta = with lib; {