diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2023-01-22 21:51:20 +0000 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2023-01-22 21:53:01 +0000 |
commit | a4161a57482adfc7b76887e48b8c83e32170ff9e (patch) | |
tree | 765d05a03ff54baf7511ec886356689019fc62fc /.github | |
parent | 54375587f59a10bc448a95873e88306d35c82090 (diff) | |
download | numpy-a4161a57482adfc7b76887e48b8c83e32170ff9e.tar.gz |
CI: for Cygwin CI job, do not use `-vv`
The actual output in the GitHub UI gets truncated, so with
`-vv` it is not possible to see what failed without downloading
the log as a zip file.
[skip circle] [skip azp] [skip cirrus]
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 29582c263..731b1fa5d 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -67,7 +67,7 @@ jobs: dash "tools/rebase_installed_dlls_cygwin.sh" 3.9 - name: Run NumPy test suite run: >- - dash -c "/usr/bin/python3.9 runtests.py -n -vv" + dash -c "/usr/bin/python3.9 runtests.py -n" - name: Upload wheel if tests fail uses: actions/upload-artifact@v3 if: failure() |