From a40ce0789b76363ec35fb1242844c7c6b39c5c16 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 20 Oct 2021 14:34:35 +0200 Subject: [PATCH] python3Packages.asyncio-nats-client: disable failing tests --- .../python-modules/asyncio-nats-client/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/asyncio-nats-client/default.nix b/pkgs/development/python-modules/asyncio-nats-client/default.nix index a7feac7312f5..b5017123850f 100644 --- a/pkgs/development/python-modules/asyncio-nats-client/default.nix +++ b/pkgs/development/python-modules/asyncio-nats-client/default.nix @@ -5,6 +5,7 @@ , nats-server , pytestCheckHook , pythonOlder +, uvloop }: buildPythonPackage rec { @@ -26,6 +27,7 @@ buildPythonPackage rec { checkInputs = [ nats-server pytestCheckHook + uvloop ]; postPatch = '' @@ -37,6 +39,8 @@ buildPythonPackage rec { # RuntimeError: Event loop is closed "test_subscribe_no_echo" "test_reconnect_to_new_server_with_auth" + "test_drain_connection" + "test_discover_servers_on_first_connect" ]; pythonImportsCheck = [ "nats.aio" ];