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 801e592 commit 180fa43Copy full SHA for 180fa43
1 file changed
.github/workflows/ci.yml
@@ -27,11 +27,20 @@ jobs:
27
python -m pip install -e .[all]
28
29
- name: Run tests
30
- run: pytest -ra --cov=tika
+ run: pytest -ra --cov
31
32
- - name: Upload coverage to Coveralls
33
- if: success()
34
- env:
35
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
- run: |
37
- coveralls
+ - name: Coveralls parallel
+ uses: coverallsapp/github-action@v2
+ with:
+ flag-name: run-${{ matrix.python-version }}
+ parallel: true
+
38
+ finish:
39
+ needs: test
40
+ if: ${{ always() }}
41
+ runs-on: ubuntu-slim
42
+ steps:
43
+ - name: Coveralls finished
44
45
46
+ parallel-finished: true
0 commit comments