We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41c6cc0 commit 11e8021Copy full SHA for 11e8021
2 files changed
.coveragerc
@@ -1,4 +1,5 @@
1
[run]
2
+relative_files = True
3
omit =
4
*test*
5
.github/workflows/push.yml
@@ -40,6 +40,12 @@ jobs:
40
python -m pip install --upgrade pip
41
pip install tox>=2.0
42
make test
43
+ - name: Coveralls
44
+ uses: AndreMiras/coveralls-python-action@develop
45
+ if: ${{ matrix.os == 'ubuntu-latest' }}
46
+ with:
47
+ parallel: true
48
+ flag-name: run-${{ matrix.os }}-${{ matrix.python-version }}
49
50
build_apk:
51
name: Unit test apk
@@ -123,3 +129,12 @@ jobs:
123
129
- name: Rebuild updated recipes
124
130
run: |
125
131
make docker/run/make/rebuild_updated_recipes
132
+
133
+ coveralls_finish:
134
+ needs: test
135
+ runs-on: ubuntu-latest
136
+ steps:
137
+ - name: Coveralls Finished
138
139
140
+ parallel-finished: true
0 commit comments