From 7e7a62aa296e1fbadcb34f562ec6a498a35c46c9 Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Sat, 4 Jan 2025 18:28:26 +0100 Subject: [PATCH] fix failing tests in github actions Change-Id: Ia37a7bcaafcc5fa8e1fe4783706d1185351cd14e --- .github/workflows/run-test.yaml | 5 +---- test/dialect/test_sqlite.py | 1 + 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-test.yaml b/.github/workflows/run-test.yaml index ad4f9f40c2..0693a53e3e 100644 --- a/.github/workflows/run-test.yaml +++ b/.github/workflows/run-test.yaml @@ -210,16 +210,13 @@ jobs: os: - "ubuntu-22.04" python-version: + # ubuntu-22.04 does not have: py27, py36. Mypy no longer supports it - "3.7" - "3.8" - "3.9" - "3.10" - "3.11" - "3.12" - include: - # ubuntu-22.04 does not have: py27, py36 - - os: "ubuntu-20.04" - python-version: "3.6" fail-fast: false # steps to run in each job. Some are github actions, others run shell commands diff --git a/test/dialect/test_sqlite.py b/test/dialect/test_sqlite.py index 12e607020e..55833761e9 100644 --- a/test/dialect/test_sqlite.py +++ b/test/dialect/test_sqlite.py @@ -3546,6 +3546,7 @@ class OnConflictTest(AssertsCompiledSQL, fixtures.TablesTest): class ComputedReflectionTest(fixtures.TestBase): __only_on__ = "sqlite" + __requires__ = ("computed_columns",) __backend__ = True @classmethod -- 2.47.2