From bbf0832745d9a1d4c988d1fc730d8ab19fa0ef37 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 3 Jul 2021 18:28:40 +0200 Subject: [PATCH] python3Packages.graphene: disable failing test --- pkgs/development/python-modules/graphene/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/graphene/default.nix b/pkgs/development/python-modules/graphene/default.nix index be2cc808eb0d..5eec4b8f0b25 100644 --- a/pkgs/development/python-modules/graphene/default.nix +++ b/pkgs/development/python-modules/graphene/default.nix @@ -50,6 +50,12 @@ buildPythonPackage rec { pytestFlagsArray = [ "--benchmark-disable" ]; + disabledTests = [ + # Expects different Exeception classes, but receives none of them + # https://github.com/graphql-python/graphene/issues/1346 + "test_unexpected_error" + ]; + pythonImportsCheck = [ "graphene" ]; meta = with lib; {