diff options
author | DWesl <22566757+DWesl@users.noreply.github.com> | 2023-01-28 11:25:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-28 11:25:13 -0500 |
commit | 38f43f7538742c25656d936856a923066085c1ea (patch) | |
tree | 7a0a9372721f4c82402d1acd39a90e6bfeda5474 /.github | |
parent | dbeaf074e310e9a3657cac52fc3b5d90598a435b (diff) | |
download | numpy-38f43f7538742c25656d936856a923066085c1ea.tar.gz |
CI: Increase number of processes for F2Py tests
Let's see if this eliminates the fork failures.
It's back to around where it was before I started tinkering, so this approach may not work.
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 7ae18ccee..d18b47f97 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=4; + run: /usr/bin/python3.9 runtests.py -n -s f2py -- --numprocesses=6; - name: Upload wheel if tests fail uses: actions/upload-artifact@v3 if: failure() |