From e324c730e22db51e15ffac531a4d445ffd968835 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Tue, 26 Sep 2023 19:41:19 +0200 Subject: [PATCH] use strict=false in blueprint tests --- tests/test_blueprints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_blueprints.py b/tests/test_blueprints.py index 1aa79ee..d2d8008 100644 --- a/tests/test_blueprints.py +++ b/tests/test_blueprints.py @@ -38,7 +38,7 @@ class BlueprintsTest(TestCase): """Set up only once, and re-use in every individual test""" cls.app = Flask("test_extensions") cls.client = cls.app.test_client() - cls.senpy = Senpy(default_plugins=True) + cls.senpy = Senpy(default_plugins=True, strict=False) # Ignore any optional plugins cls.senpy.init_app(cls.app) cls.dir = os.path.join(os.path.dirname(__file__), "..") cls.senpy.add_folder(cls.dir)