python312Packages.exceptiongroup: disable failing test

This commit is contained in:
Martin Weinelt 2024-04-15 09:43:40 +02:00
parent f145aef92c
commit 79ff3830db
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
1 changed files with 6 additions and 0 deletions

View File

@ -31,6 +31,12 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = if pythonAtLeast "3.12" then [
# https://github.com/agronholm/exceptiongroup/issues/116
"test_deep_split"
"test_deep_subgroup"
] else null;
pythonImportsCheck = [
"exceptiongroup"
];