python313Packages.pyflakes: disable failing tests

This commit is contained in:
Martin Weinelt
2024-11-18 18:36:45 +01:00
parent a0c33425f1
commit 9cd69975e3
@@ -1,6 +1,7 @@
{
lib,
buildPythonPackage,
pythonAtLeast,
pythonOlder,
fetchFromGitHub,
setuptools,
@@ -26,6 +27,11 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = lib.optionals (pythonAtLeast "3.13") [
# https://github.com/PyCQA/pyflakes/issues/812
"test_errors_syntax"
];
pythonImportsCheck = [ "pyflakes" ];
meta = with lib; {