Skip to content

Commit

Permalink
python312Packages.jinja2: disable test_elif_deep on s390x
Browse files Browse the repository at this point in the history
  • Loading branch information
bl0v3 committed Oct 9, 2024
1 parent da60a43 commit 50dd867
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions pkgs/development/python-modules/jinja2/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,15 @@ buildPythonPackage rec {

nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.i18n;

disabledTests = lib.optionals (pythonAtLeast "3.13") [
# https://github.com/pallets/jinja/issues/1900
"test_custom_async_iteratable_filter"
"test_first"
"test_loop_errors"
"test_package_zip_list"
];
disabledTests =
lib.optionals (pythonAtLeast "3.13") [
# https://github.com/pallets/jinja/issues/1900
"test_custom_async_iteratable_filter"
"test_first"
"test_loop_errors"
"test_package_zip_list"
]
++ lib.optional stdenv.hostPlatform.isS390x [ "test_elif_deep" ];

passthru.doc = stdenv.mkDerivation {
# Forge look and feel of multi-output derivation as best as we can.
Expand Down

0 comments on commit 50dd867

Please sign in to comment.