From 1837ae56a6f44b65ec24585d9cec7b0389ef8daf Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 5 Mar 2023 17:25:56 +0000 Subject: [PATCH] python310Packages.caio: Disable failing test The loop fixture is missing and it is unclear where it should be coming from. --- pkgs/development/python-modules/caio/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/caio/default.nix b/pkgs/development/python-modules/caio/default.nix index a7dcab5cacd4..6416c4d364ba 100644 --- a/pkgs/development/python-modules/caio/default.nix +++ b/pkgs/development/python-modules/caio/default.nix @@ -25,6 +25,11 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTests = [ + # fixture 'loop' not found + "test_operations_cancel_cleanly" + ]; + pythonImportsCheck = [ "caio" ];