File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,14 @@ jobs:
3636 - name : Install
3737 run : |
3838 pip install --upgrade pip wheel
39- pip install "${{ matrix.install-target }}" 2>stderr.txt
39+ pip install "${{ matrix.install-target }}"
4040 - name : Check no warnings
4141 if : matrix.os != 'windows-latest'
4242 run : |
43+ # Install and save stderr to file so we can check for missing target errors
44+ # (re-install is a bit stupid,
45+ # but it doesn't actually do anything except emit the warning in practice)
46+ pip install "${{ matrix.install-target }}" 2>stderr.txt
4347 if grep -q "WARN" stderr.txt; then echo "Warnings in pip install output" && cat stderr.txt && exit 1; else exit 0; fi
4448 - name : Get version non-windows
4549 if : matrix.os != 'windows-latest'
You can’t perform that action at this time.
0 commit comments