We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2412e66 commit c8b9176Copy full SHA for c8b9176
1 file changed
.github/workflows/install-pypi.yaml
@@ -36,10 +36,14 @@ jobs:
36
- name: Install
37
run: |
38
pip install --upgrade pip wheel
39
- pip install "${{ matrix.install-target }}" 2>stderr.txt
+ pip install "${{ matrix.install-target }}"
40
- name: Check no warnings
41
if: matrix.os != 'windows-latest'
42
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
47
if grep -q "WARN" stderr.txt; then echo "Warnings in pip install output" && cat stderr.txt && exit 1; else exit 0; fi
48
- name: Get version non-windows
49
0 commit comments