From d8eb5fd7a4e7c9e86012ea4f84b3c138b6534fec Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 20 Apr 2022 03:27:39 +0200 Subject: [PATCH] python3Packages.flask-admin: disable test that fails with werkzeug>=2.1.0 --- pkgs/development/python-modules/flask-admin/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/flask-admin/default.nix b/pkgs/development/python-modules/flask-admin/default.nix index 7187e879052..6a1ea3991cf 100644 --- a/pkgs/development/python-modules/flask-admin/default.nix +++ b/pkgs/development/python-modules/flask-admin/default.nix @@ -62,6 +62,11 @@ buildPythonPackage rec { wtf-peewee ]; + disabledTests = [ + # Incompatible with werkzeug 2.1 + "test_mockview" + ]; + disabledTestPaths = [ # Tests have additional requirements "flask_admin/tests/geoa/test_basic.py"