python312Packages.paginate: disable failing tests
This commit is contained in:
parent
01d0a5751f
commit
23aee6701a
1 changed files with 7 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonAtLeast
|
||||
|
||||
# build-system
|
||||
, setuptools
|
||||
|
@ -33,6 +34,12 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = lib.optionals (pythonAtLeast "3.12") [
|
||||
# https://github.com/Pylons/paginate/issues/19
|
||||
"test_wrong_collection"
|
||||
"test_unsliceable_sequence3"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python pagination module";
|
||||
homepage = "https://github.com/Pylons/paginate";
|
||||
|
|
Loading…
Reference in a new issue