Skip to content

Commit

Permalink
Merge pull request kivy#1063 from AndreMiras/feature/coveralls_from_p…
Browse files Browse the repository at this point in the history
…ull_requests

Fixes coveralls.io on pull requests
  • Loading branch information
AndreMiras authored Apr 13, 2020
2 parents 58774d8 + 3f1b44d commit 422f951
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/test_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,16 @@ jobs:
- name: Requirements
run: |
pip install -U coveralls setuptools tox>=2.0
tox
- name: Build
- name: Tox
run: tox
- name: Docker build
run: |
docker build --tag=buildozer .
- name: Test
- name: Docker run
run: |
docker run buildozer --version
- name: coveralls
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
run: coveralls
- name: Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_SERVICE_NAME: github
run: coveralls

0 comments on commit 422f951

Please sign in to comment.