From 5eb407f84bdabdbcd68975dbf76dc4c0809d7373 Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Tue, 14 Sep 2021 23:38:00 +0200 Subject: Added support for ``psycopg`` dialect. Both sync and async versions are supported. Fixes: #6842 Change-Id: I57751c5028acebfc6f9c43572562405453a2f2a4 --- lib/sqlalchemy/testing/plugin/plugin_base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/sqlalchemy/testing/plugin') diff --git a/lib/sqlalchemy/testing/plugin/plugin_base.py b/lib/sqlalchemy/testing/plugin/plugin_base.py index 32ed2c315..d79931b91 100644 --- a/lib/sqlalchemy/testing/plugin/plugin_base.py +++ b/lib/sqlalchemy/testing/plugin/plugin_base.py @@ -706,7 +706,8 @@ def _do_skips(cls): ) if not all_configs: - msg = "'%s' unsupported on any DB implementation %s%s" % ( + msg = "'%s.%s' unsupported on any DB implementation %s%s" % ( + cls.__module__, cls.__name__, ", ".join( "'%s(%s)+%s'" -- cgit v1.2.1