From 142da40bbf9407e491025124e62f69a0b19007ba Mon Sep 17 00:00:00 2001 From: mattip Date: Mon, 29 Jan 2024 08:18:01 +0200 Subject: [PATCH 1/2] BUG: cygwin 3.9.18 stalls in pip install with progress bars [skip azp][skip circle][skip cirrus] --- .github/workflows/cygwin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index c8542edd32ce..18425843771c 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -49,7 +49,7 @@ jobs: dash -c "which python3.9; /usr/bin/python3.9 --version -V" - name: Build NumPy wheel run: | - dash -c "/usr/bin/python3.9 -m pip install build pytest hypothesis pytest-xdist Cython meson" + dash -c "/usr/bin/python3.9 -m pip install --progress-bar=off build pytest hypothesis pytest-xdist Cython meson" dash -c "/usr/bin/python3.9 -m build . --wheel -Csetup-args=-Dblas=blas -Csetup-args=-Dlapack=lapack -Csetup-args=-Dcpu-dispatch=none -Csetup-args=-Dcpu-baseline=native" - name: Install NumPy from wheel run: | From 60014ae1d9dea040e6d1f412cce563eace99dea8 Mon Sep 17 00:00:00 2001 From: mattip Date: Mon, 29 Jan 2024 09:52:24 +0200 Subject: [PATCH 2/2] TST: increase verbosity [skip azp][skip circle][skip cirrus] --- .github/workflows/cygwin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index 18425843771c..461a9b4bfd9f 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -61,7 +61,7 @@ jobs: shell: "C:\\tools\\cygwin\\bin\\bash.exe -o igncr -eo pipefail {0}" run: | cd tools - /usr/bin/python3.9 -m pytest --pyargs numpy -n2 -m "not slow" + /usr/bin/python3.9 -m pytest --pyargs numpy -v -n2 -m "not slow" - name: Upload wheel if tests fail uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 if: failure()