]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix failing tests in github actions
authorFederico Caselli <cfederico87@gmail.com>
Sat, 4 Jan 2025 17:28:26 +0000 (18:28 +0100)
committerFederico Caselli <cfederico87@gmail.com>
Sat, 4 Jan 2025 17:28:46 +0000 (18:28 +0100)
Change-Id: Ia37a7bcaafcc5fa8e1fe4783706d1185351cd14e

.github/workflows/run-test.yaml
test/dialect/test_sqlite.py

index ad4f9f40c252a58c85c5cdc83f0f94109371a20e..0693a53e3e5f8caa3f0b2dc545f9afafebb86f66 100644 (file)
@@ -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
index 12e607020e0c1ce07d9d0249f877e4d4cd9b932e..55833761e9de97ded3f316946306a92c015834cd 100644 (file)
@@ -3546,6 +3546,7 @@ class OnConflictTest(AssertsCompiledSQL, fixtures.TablesTest):
 
 class ComputedReflectionTest(fixtures.TestBase):
     __only_on__ = "sqlite"
+    __requires__ = ("computed_columns",)
     __backend__ = True
 
     @classmethod