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