From bf0b516d2894b509e01cc868600cd259cb825284 Mon Sep 17 00:00:00 2001 From: Mike Fiedler Date: Mon, 3 Jan 2022 23:04:16 -0500 Subject: [PATCH] test: ignore CIText warnings in test output The updated SQLAlchemy library now emits 2,000+ warnings for CIText(). I've opened an issue on the responsible repo. Refs: https://github.com/mahmoudimus/sqlalchemy-citext/issues/25 Signed-off-by: Mike Fiedler --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index c05d20bcffb2..941c45ae949b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,4 +17,5 @@ markers = [ filterwarnings = [ 'ignore::warehouse.admin.services.InsecureStorageWarning', 'ignore::warehouse.packaging.services.InsecureStorageWarning', + 'ignore:UserDefinedType CIText.*:sqlalchemy.exc.SAWarning' # See https://github.com/mahmoudimus/sqlalchemy-citext/issues/25 ]