Skip to content

Commit

Permalink
Don't submit coverage if env varibale is unset
Browse files Browse the repository at this point in the history
  • Loading branch information
browniebroke committed Dec 6, 2022
1 parent c18993f commit 5cfc5c3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,5 +260,8 @@ jobs:
- run:
name: Finish Coveralls
command: |
pip install coveralls
coveralls --finish
if [ "$COVERALLS_REPO_TOKEN" != "" ]
then
pip install coveralls
coveralls --finish
fi

0 comments on commit 5cfc5c3

Please sign in to comment.