python3Packages.pyflakes: disable failing test for PyPy3

test_misencodedFileUTF16 fails with PyPy3 as it outputs a different
error message than CPython.
This commit is contained in:
Max Wipfli 2025-08-17 15:06:28 +02:00
parent f6b62e03ed
commit 20d8a653d0

View File

@ -26,6 +26,7 @@ buildPythonPackage rec {
disabledTests = lib.optionals isPyPy [
# https://github.com/PyCQA/pyflakes/issues/779
"test_eofSyntaxError"
"test_misencodedFileUTF16"
"test_misencodedFileUTF8"
"test_multilineSyntaxError"
];