From: Federico Caselli Date: Sat, 4 Jan 2025 17:28:26 +0000 (+0100) Subject: fix failing tests in github actions X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e7a62aa296e1fbadcb34f562ec6a498a35c46c9;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix failing tests in github actions Change-Id: Ia37a7bcaafcc5fa8e1fe4783706d1185351cd14e --- 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