We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1745a0a commit 04b3ddbCopy full SHA for 04b3ddb
.github/workflows/ci.yml
@@ -87,9 +87,10 @@ jobs:
87
- name: Tests
88
if: ${{ !cancelled() && steps.deps.conclusion == 'success' }}
89
run: |
90
- coverage run runtests.py --parallel
+ coverage run runtests.py --parallel || coverage run ./runtests.py
91
# tests the extension capability
92
- SAMPLE_APP=1 coverage run ./runtests.py --parallel --keepdb --exclude-tag=selenium_tests
+ SAMPLE_APP=1 coverage run ./runtests.py --parallel --keepdb --exclude-tag=selenium_tests \
93
+ || SAMPLE_APP=1 coverage run ./runtests.py --keepdb --exclude-tag=selenium_tests
94
coverage combine
95
coverage xml
96
env:
0 commit comments