Skip to content

Commit

Permalink
Fix 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed Oct 29, 2023
1 parent 2f7ba23 commit cbb625b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ jobs:
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
# - "3.7"
# - "3.8"
# - "3.9"
# - "3.10"
- "3.11"
- "3.12"
clickhouse-version:
- 22.5.1.2079
- 19.3.5
- 18.14.9
# - 19.3.5
# - 18.14.9

name: ${{ matrix.python-version }} CH=${{ matrix.clickhouse-version }}
steps:
Expand Down
1 change: 1 addition & 0 deletions tests/types/test_numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def test_insert_overflow(self):
# 'out of range' is raised from `struct` within
# `clickhouse_driver`,
# before the query is sent to CH.
print(ex.exception) # noqa: T201
self.assertTrue(
'out of range' in str(ex.exception) or
'Too many digits' in str(ex.exception)
Expand Down

0 comments on commit cbb625b

Please sign in to comment.