Skip to content

Commit

Permalink
Travis: Added Python-3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
9EOR9 committed Oct 12, 2023
1 parent 84e4232 commit 1762e9d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.10"
- 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
- if: type = push AND fork = false
env: srv=maxscale
Expand Down
4 changes: 4 additions & 0 deletions testing/test/integration/test_cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1539,6 +1539,10 @@ def test_conpy225(self):

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)")
Expand Down

0 comments on commit 1762e9d

Please sign in to comment.