pypy3Packages.pycodestyle: disable broken test (#412921)

authored by Wolfgang Walther and committed by GitHub 859bfb50 65b2eb02

+6
+6
pkgs/development/python-modules/pycodestyle/default.nix
··· 5 python, 6 pytestCheckHook, 7 setuptools, 8 }: 9 10 buildPythonPackage rec { ··· 29 postCheck = '' 30 ${python.interpreter} -m pycodestyle --statistics pycodestyle.py 31 ''; 32 33 meta = with lib; { 34 changelog = "https://github.com/PyCQA/pycodestyle/blob/${version}/CHANGES.txt";
··· 5 python, 6 pytestCheckHook, 7 setuptools, 8 + isPyPy, 9 }: 10 11 buildPythonPackage rec { ··· 30 postCheck = '' 31 ${python.interpreter} -m pycodestyle --statistics pycodestyle.py 32 ''; 33 + 34 + disabledTests = lib.optionals isPyPy [ 35 + # PyPy reports a SyntaxError instead of ValueError 36 + "test_check_nullbytes" 37 + ]; 38 39 meta = with lib; { 40 changelog = "https://github.com/PyCQA/pycodestyle/blob/${version}/CHANGES.txt";