From 32872577316a8d9c0ea4e0f48d7e6b6109ab7e3d Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 3 Nov 2020 15:37:37 +0100 Subject: [PATCH] CI: Skip testing against SQLAlchemy 1.1.18 on Windows --- .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 10b805165..c7e00561a 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" ]]; then + if [[ ${{ matrix.os }} = "windows-latest" && ${{ matrix.sqla-version }} != "1.1.18" ]]; then bin/test-quick -vv1 fi