From: Denis Laxalde Date: Tue, 20 May 2025 15:06:59 +0000 (+0200) Subject: Skip test using MACADDR8 for PostgreSQL < 10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=894276ff232ba328cc235ecf04e84067db204c3d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Skip test using MACADDR8 for PostgreSQL < 10 --- diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py index 795a897699..0df48f6fd1 100644 --- a/test/dialect/postgresql/test_types.py +++ b/test/dialect/postgresql/test_types.py @@ -3548,7 +3548,11 @@ class SpecialTypesTest(fixtures.TablesTest, ComparesTables): (postgresql.INET, "127.0.0.1"), (postgresql.CIDR, "192.168.100.128/25"), (postgresql.MACADDR, "08:00:2b:01:02:03"), - (postgresql.MACADDR8, "08:00:2b:01:02:03:04:05"), + ( + postgresql.MACADDR8, + "08:00:2b:01:02:03:04:05", + testing.skip_if("postgresql < 10"), + ), argnames="column_type, value", id_="na", )