From cbb625b137dc1f712c2430a86dbb97bf6074672e Mon Sep 17 00:00:00 2001 From: Konstantin Lebedev Date: Sun, 29 Oct 2023 21:59:15 +0300 Subject: [PATCH] Fix 3.12 --- .github/workflows/actions.yml | 12 ++++++------ tests/types/test_numeric.py | 1 + 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 4c3577ec..c153424d 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -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: diff --git a/tests/types/test_numeric.py b/tests/types/test_numeric.py index ca9c1b9b..b8ea4dec 100644 --- a/tests/types/test_numeric.py +++ b/tests/types/test_numeric.py @@ -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)