python311Packages.exceptiongroup: disable failing test

This commit is contained in:
Martin Weinelt
2023-06-25 00:03:40 +02:00
parent 6b4f9866f0
commit 8ab140c9b6
@@ -33,6 +33,12 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = if (pythonAtLeast "3.11") then [
# regression in 3.11.4
# https://github.com/agronholm/exceptiongroup/issues/64
"test_catch_handler_raises"
] else null;
pythonImportsCheck = [
"exceptiongroup"
];