mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
Attempt to workaround for 3960.
This commit is contained in:
parent
7ef1c02067
commit
98624f3d6a
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
@ -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
0
newsfragments/3960.minor
Normal file
Loading…
Reference in New Issue
Block a user