Attempt to workaround for 3960.

This commit is contained in:
Itamar Turner-Trauring 2023-01-12 09:53:07 -05:00
parent 7ef1c02067
commit 98624f3d6a
2 changed files with 9 additions and 0 deletions

View File

@ -86,8 +86,17 @@ jobs:
run: python misc/build_helpers/show-tool-versions.py
- name: Run tox for corresponding Python version
if: ${{ !contains(matrix.os, 'windows') }}
run: python -m tox
# On Windows, a non-blocking pipe might respond (when emulating Unix-y
# API) with ENOSPC to indicate buffer full. Trial doesn't handle this
# well. So, we pipe the output through Get-Content (similar to piping
# through cat) to make buffer handling someone else's problem.
- name: Run tox for corresponding Python version
if: ${{ contains(matrix.os, 'windows') }}
run: python -m tox | Get-Content
- name: Upload eliot.log
uses: actions/upload-artifact@v3
with:

0
newsfragments/3960.minor Normal file
View File