python311Packages.exceptiongroup: disable failing test

This commit is contained in:
Martin Weinelt 2023-06-24 23:31:00 +02:00
parent 6b4f9866f0
commit 8ab140c9b6
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -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"
];