We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8360b8 commit 5e94663Copy full SHA for 5e94663
1 file changed
.github/workflows/python-package.yml
@@ -133,9 +133,12 @@ jobs:
133
run: |
134
pytest --cov-report=xml
135
- name: Test with pytest (Xvfb)
136
- if: runner.os != 'Windows'
+ if: always() && runner.os != 'Windows'
137
138
- xvfb-run --server-num=$RANDOM --auto-servernum pytest --cov-report=xml
+ xvfb-run -e /tmp/xvfb.log --server-num=$RANDOM --auto-servernum pytest --cov-report=xml
139
+ - name: Xvfb logs
140
+ if: runner.os != 'Windows'
141
+ run: cat /tmp/xvfb.log
142
- uses: codecov/codecov-action@v1
143
- name: Upload to PyPI
144
if: startsWith(github.ref, 'refs/tags/') && runner.os != 'Linux'
0 commit comments