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 b9f4fcc commit 7c20c2dCopy full SHA for 7c20c2d
.github/workflows/ci.yml
@@ -125,9 +125,19 @@ jobs:
125
- name: Upload coverage data to coveralls.io
126
shell: bash -e {0}
127
env:
128
+ COVERALLS_PARALLEL: true
129
COVERALLS_FLAG_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }} conda=${{ matrix.use-conda }}
130
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
131
run: |
132
cd temp_test_dir # Switch to test working dir per non-src-layout hack
133
cat qtpy_basedir.txt
134
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