python311Packages.pegen: disable failing test

This commit is contained in:
Fabian Affolter 2024-01-15 10:33:01 +01:00
parent 817c314ea6
commit 65c9353ad3

View File

@ -35,7 +35,10 @@ buildPythonPackage rec {
"pegen"
];
disabledTests = lib.optionals (pythonAtLeast "3.11") [
disabledTests = [
# ValueError: Expected locations of (1, 3) and...
"test_invalid_call_arguments"
] ++ lib.optionals (pythonAtLeast "3.11") [
# https://github.com/we-like-parsers/pegen/issues/89
"test_invalid_def_stmt"
];