mirror of
https://github.com/mariadb-corporation/mariadb-connector-python.git
synced 2025-08-04 08:04:45 +00:00
Travis: Added Python-3.12
This commit is contained in:
@ -73,6 +73,7 @@ jobs:
|
|||||||
- env: srv=mariadb v=10.11 local=1 PYTHON_VER="3.9"
|
- env: srv=mariadb v=10.11 local=1 PYTHON_VER="3.9"
|
||||||
- env: srv=mariadb v=10.11 local=1 PYTHON_VER="3.10"
|
- env: srv=mariadb v=10.11 local=1 PYTHON_VER="3.10"
|
||||||
- env: srv=mariadb v=10.11 local=1 PYTHON_VER="3.11"
|
- env: srv=mariadb v=10.11 local=1 PYTHON_VER="3.11"
|
||||||
|
- env: srv=mariadb v=10.11 local=1 PYTHON_VER="3.12"
|
||||||
# - env: srv=mariadb v=10.11 local=1 PYTHON_VER="3.10" BENCH=1
|
# - env: srv=mariadb v=10.11 local=1 PYTHON_VER="3.10" BENCH=1
|
||||||
- if: type = push AND fork = false
|
- if: type = push AND fork = false
|
||||||
env: srv=maxscale
|
env: srv=maxscale
|
||||||
|
@ -1539,6 +1539,10 @@ class TestCursor(unittest.TestCase):
|
|||||||
|
|
||||||
def test_conpy270(self):
|
def test_conpy270(self):
|
||||||
connection = create_connection()
|
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 = connection.cursor()
|
||||||
|
|
||||||
cursor.execute("create or replace table t1 (a uuid)")
|
cursor.execute("create or replace table t1 (a uuid)")
|
||||||
|
Reference in New Issue
Block a user