From a3eb1521e0720d31aaa9eccb28caf311744ee575 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..d9f3784c5 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