Skip to content

Commit

Permalink
Move coveralls to github actions (kivy#2490)
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 authored Sep 12, 2021
1 parent 41c6cc0 commit 11e8021
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[run]
relative_files = True
omit =
*test*

Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ jobs:
python -m pip install --upgrade pip
pip install tox>=2.0
make test
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
parallel: true
flag-name: run-${{ matrix.os }}-${{ matrix.python-version }}

build_apk:
name: Unit test apk
Expand Down Expand Up @@ -123,3 +129,12 @@ jobs:
- name: Rebuild updated recipes
run: |
make docker/run/make/rebuild_updated_recipes
coveralls_finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: AndreMiras/coveralls-python-action@develop
with:
parallel-finished: true

0 comments on commit 11e8021

Please sign in to comment.