]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Skip test using MACADDR8 for PostgreSQL < 10 12612/head
authorDenis Laxalde <denis@laxalde.org>
Tue, 20 May 2025 15:06:59 +0000 (17:06 +0200)
committerDenis Laxalde <denis@laxalde.org>
Wed, 21 May 2025 06:12:49 +0000 (08:12 +0200)
test/dialect/postgresql/test_types.py

index 795a897699b331b4c994c594cffdebce610d6cc5..0df48f6fd124aec1d473d9d7ed20dde710be2fa7 100644 (file)
@@ -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",
     )