From f471f8909ab5586c584f82231a0e940c0a9f98ec 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 | 10 +++++----- tests/types/test_numeric.py | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 4c3577ec..e0e5bdfe 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -6,11 +6,11 @@ jobs: strategy: matrix: python-version: - - "3.7" - - "3.8" - - "3.9" - - "3.10" - - "3.11" +# - "3.7" +# - "3.8" +# - "3.9" +# - "3.10" +# - "3.11" - "3.12" clickhouse-version: - 22.5.1.2079 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)