Travis: Added Python-3.12

This commit is contained in:
Georg Richter
2023-10-12 06:01:00 +02:00
parent 84e423295a
commit 1762e9d458
2 changed files with 5 additions and 0 deletions

View File

@ -1539,6 +1539,10 @@ class TestCursor(unittest.TestCase):
def test_conpy270(self):
connection = create_connection()
x = connection.server_version_info
if x < (10, 7, 0) or is_mysql():
self.skipTest("Skip (MySQL and MariaDB < 10.7)")
cursor = connection.cursor()
cursor.execute("create or replace table t1 (a uuid)")