Skip to content

Commit

Permalink
Merge pull request #831 from Microsoft/fix/code-coverage
Browse files Browse the repository at this point in the history
Add --parallel flag in gradle code coverage command
  • Loading branch information
guperrot committed Oct 6, 2018
2 parents 1acc1b8 + 4e44de5 commit d443691
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/run-code-coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ if [ -z $1 ]
then
# Using env variable COVERALLS_REPO_TOKEN if set, this will not fail process unset.
./gradlew coveralls
./gradlew --parallel coveralls
else
# Expose variable just for this run based on script parameter.
COVERALLS_REPO_TOKEN=$1 ./gradlew coveralls
COVERALLS_REPO_TOKEN=$1 ./gradlew --parallel coveralls
fi
EXIT_CODE=$?
Expand Down

0 comments on commit d443691

Please sign in to comment.