From 65967fa684f4dce0a788779c91c982e2677fcf74 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 12 Nov 2022 18:50:26 +0100 Subject: [PATCH] python310Packages.asyncio-mqtt: enable tests --- .../python-modules/asyncio_mqtt/default.nix | 24 +++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/asyncio_mqtt/default.nix b/pkgs/development/python-modules/asyncio_mqtt/default.nix index 3b1a8fee3cc1..41f2f2864d18 100644 --- a/pkgs/development/python-modules/asyncio_mqtt/default.nix +++ b/pkgs/development/python-modules/asyncio_mqtt/default.nix @@ -1,7 +1,9 @@ { lib +, anyio , buildPythonPackage , fetchFromGitHub , paho-mqtt +, pytestCheckHook , pythonOlder , setuptools , setuptools-scm @@ -35,13 +37,31 @@ buildPythonPackage rec { typing-extensions ]; - # Module will have tests starting with > 0.14.0 - doCheck = false; + checkInputs = [ + anyio + pytestCheckHook + ]; pythonImportsCheck = [ "asyncio_mqtt" ]; + disabledTests = [ + # Tests require network access + "test_client_filtered_messages" + "test_client_unfiltered_messages" + "test_client_unsubscribe" + "test_client_will" + "test_client_tls_context" + "test_client_tls_params" + "test_client_username_password " + "test_client_logger" + "test_client_max_concurrent_outgoing_calls" + "test_client_websockets" + "test_client_pending_calls_threshold" + "test_client_no_pending_calls_warnings_with_max_concurrent_outgoing_calls" + ]; + meta = with lib; { description = "Idomatic asyncio wrapper around paho-mqtt"; homepage = "https://github.com/sbtinstruments/asyncio-mqtt";