python311Packages.exceptiongroup: disable failing test
This commit is contained in:
parent
6b4f9866f0
commit
8ab140c9b6
1 changed files with 6 additions and 0 deletions
|
@ -33,6 +33,12 @@ buildPythonPackage rec {
|
||||||
pytestCheckHook
|
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 = [
|
pythonImportsCheck = [
|
||||||
"exceptiongroup"
|
"exceptiongroup"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue