lol

python312Packages.paginate: disable failing tests

+7
+7
pkgs/development/python-modules/paginate/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , pythonAtLeast 4 5 5 6 # build-system 6 7 , setuptools ··· 31 32 32 33 nativeCheckInputs = [ 33 34 pytestCheckHook 35 + ]; 36 + 37 + disabledTests = lib.optionals (pythonAtLeast "3.12") [ 38 + # https://github.com/Pylons/paginate/issues/19 39 + "test_wrong_collection" 40 + "test_unsliceable_sequence3" 34 41 ]; 35 42 36 43 meta = with lib; {