From 75c90fc796f77df28aee12ee612145b07f2f6a5a Mon Sep 17 00:00:00 2001 From: Florian Brandes Date: Mon, 9 May 2022 13:35:02 +0200 Subject: [PATCH] python3Packages.falcon: exclude tests Signed-off-by: Florian Brandes --- pkgs/development/python-modules/falcon/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/falcon/default.nix b/pkgs/development/python-modules/falcon/default.nix index 58bbae87283..8051fbb55bf 100644 --- a/pkgs/development/python-modules/falcon/default.nix +++ b/pkgs/development/python-modules/falcon/default.nix @@ -80,6 +80,11 @@ buildPythonPackage rec { "tests" ]; + disabledTestPaths = [ + # needs a running server + "tests/asgi/test_asgi_servers.py" + ]; + meta = with lib; { description = "An unladen web framework for building APIs and app backends"; homepage = "https://falconframework.org/";