Skip to content

Commit 7c20c2d

Browse files
committed
Testing
1 parent b9f4fcc commit 7c20c2d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,19 @@ jobs:
125125
- name: Upload coverage data to coveralls.io
126126
shell: bash -e {0}
127127
env:
128+
COVERALLS_PARALLEL: true
128129
COVERALLS_FLAG_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }} conda=${{ matrix.use-conda }}
129130
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
130131
run: |
131132
cd temp_test_dir # Switch to test working dir per non-src-layout hack
132133
cat qtpy_basedir.txt
133134
pipx run coveralls --service=github --rcfile="../.coveragerc" --basedir="../qtpy"
135+
finish:
136+
needs: test
137+
if: ${{ always() }}
138+
runs-on: ubuntu-latest
139+
steps:
140+
- name: Coveralls Finished
141+
uses: coverallsapp/github-action@v2
142+
with:
143+
parallel-finished: true

0 commit comments

Comments
 (0)