Unverified Commit 6a13bc18 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #281097 from fabaff/pegen-fix

python311Packages.pegen: disable failing test
parents d38b8bdb 65c9353a
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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"
  ];