From f1d48c8189e1d477529d356bf4c10ca18d840340 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 23 Oct 2025 07:11:15 +0200 Subject: [PATCH] test: explicitly test for psycopg3 --- tests/persistence/test_migrations.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/persistence/test_migrations.py b/tests/persistence/test_migrations.py index 677ba9014..daaf72b4a 100644 --- a/tests/persistence/test_migrations.py +++ b/tests/persistence/test_migrations.py @@ -441,7 +441,8 @@ def test_migrate_pairlocks(mocker, default_conf, fee, caplog): "dialect", [ "sqlite", - "postgresql", + "postgresql", # test for psycopg2 compat + "postgresql.psycopg", # test for psycopg3 compat "mysql", "oracle", "mssql",