Skip to content

Commit

Permalink
Skip coveralls for python 2.7
Browse files Browse the repository at this point in the history
Coveralls uploads are no longer supported for Python 2.
  • Loading branch information
dav3r committed Apr 20, 2022
1 parent f5ec0c9 commit 347a447
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ jobs:
COVERALLS_PARALLEL: true
COVERALLS_SERVICE_NAME: github
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: success()
# Skip this step for python 2.7 because coveralls uploads
# are no longer unsupported
if: ${{ (matrix.python-version != '2.7') && success() }}
- name: Setup tmate debug session
uses: mxschmitt/action-tmate@v3
if: env.RUN_TMATE
Expand Down

0 comments on commit 347a447

Please sign in to comment.