From 4c3f0e6b566590c0e65ded0ca018beb604110118 Mon Sep 17 00:00:00 2001 From: osoken Date: Fri, 23 Feb 2024 15:06:29 +0900 Subject: [PATCH] fix(pyproject): add ignore DeprecationWarning caused by the base libraries --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 150b2bb..9d38cd8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,6 +71,7 @@ addopts = ["-sv", "--doctest-modules", "--cov=birdxplorer", "--cov-report=xml", testpaths = ["tests", "birdxplorer"] filterwarnings = [ "error", + "ignore:The \\'app\\' shortcut is now deprecated. Use the explicit style \\'transport=WSGITransport\\(app=\\.\\.\\.\\)\\' instead\\.", ] [tool.black]