From 3b4f51e17cbc71cc7243985903d97f8a8f617962 Mon Sep 17 00:00:00 2001 From: janezd Date: Sat, 28 Sep 2024 21:53:30 +0200 Subject: [PATCH] CI: Install pymssql separately --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 82a52c8ecfa..c1e87c4cfc9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -158,6 +158,11 @@ jobs: python -m pip install --upgrade pip python -m pip install --upgrade tox + if ${{ matrix.os }} == 'macos-latest' && ${{ matrix.python-version }} >= '3.11': + - name: Install pymssql on macOS + run: | + pip install --pre --no-binary :all: pymssql --no-cache --force + - name: Test with Tox run: | tox -e ${{ matrix.tox_env }}