From f0028372a48d57bddd16a30a4cffeb3aaf6cbfe1 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 3 Nov 2020 15:43:39 +0100 Subject: [PATCH] CI: Only test against SQLAlchemy 1.3.20 on Windows SQLAlchemy release series 1.1.x and 1.2.x apparently don't work on Win. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c7e00561a..e95141718 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -64,6 +64,6 @@ jobs: if [[ ${{ matrix.os }} = "macos-latest" ]]; then bin/coverage run bin/test-quick -vv1 fi - if [[ ${{ matrix.os }} = "windows-latest" && ${{ matrix.sqla-version }} != "1.1.18" ]]; then + if [[ ${{ matrix.os }} = "windows-latest" && ${{ matrix.sqla-version }} == "1.3.20" ]]; then bin/test-quick -vv1 fi