diff options
author | DWesl <22566757+DWesl@users.noreply.github.com> | 2023-01-28 20:57:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-28 20:57:42 -0500 |
commit | 83f62a99684396736dea901e4885a3715e5a74bf (patch) | |
tree | d3ca9197cbc5e13ba2f47c36c75edb9d81b3a2dd /.github | |
parent | 38f43f7538742c25656d936856a923066085c1ea (diff) | |
download | numpy-83f62a99684396736dea901e4885a3715e5a74bf.tar.gz |
CI: Revert increase in parallel test processes.
Tests hang, which is less than ideal.
Hopefully this one works well.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cygwin.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index d18b47f97..a2c2aef69 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -79,7 +79,7 @@ jobs: - name: Run NumPy F2Py tests shell: "C:\\tools\\cygwin\\bin\\bash.exe -o igncr -eo pipefail {0}" # I need the separate processes more than I need the parallelization - run: /usr/bin/python3.9 runtests.py -n -s f2py -- --numprocesses=6; + run: /usr/bin/python3.9 runtests.py -n -s f2py -- --numprocesses=auto; - name: Upload wheel if tests fail uses: actions/upload-artifact@v3 if: failure() |