From b3958d173fb861ba7ea042af307910ba15d8a7d2 Mon Sep 17 00:00:00 2001 From: DWesl <22566757+DWesl@users.noreply.github.com> Date: Thu, 14 Mar 2024 08:09:12 -0400 Subject: [PATCH] CI: Check that newly-installed numpy imports The tests can't find it, so check here. --- .github/workflows/test-cygwin.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-cygwin.yml b/.github/workflows/test-cygwin.yml index c530ba4f7..084231e28 100644 --- a/.github/workflows/test-cygwin.yml +++ b/.github/workflows/test-cygwin.yml @@ -118,6 +118,7 @@ jobs: shell: dash.exe -l "{0}" run: | python3 -m pip install -U numpy --config-settings=setup-args="-Dblas=blas" --config-settings=setup-args="-Dlapack=lapack" + python3 -c "import numpy as np; print(np.__version__)" - name: Build shell: bash.exe -eo pipefail -o igncr "{0}"