summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2021-06-05 12:03:58 +0200
committerGitHub <noreply@github.com>2021-06-05 12:03:58 +0200
commit36b2126e5413091fa2fcaaec391a79e48d9730aa (patch)
treee7c2df84448528ded10e7251b5a727c2c0316249
parentMerge pull request #125349 from Mic92/containerd-backport (diff)
parentpython3Packages.aiomultiprocess: disable failing tests (diff)
downloadnixpkgs-36b2126e5413091fa2fcaaec391a79e48d9730aa.tar.gz
Merge pull request #125762 from NixOS/backport-125749-to-release-21.05
[Backport release-21.05] python3Packages.aiomultiprocess: disable failing tests
-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 7b84996a1c91..6403f396eaac 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; {