diff --git a/.codecov.yml b/.codecov.yml index a52495b..e2ed4ad 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -1,17 +1,14 @@ # Documentation: https://docs.codecov.io/docs/codecov-yaml -codecov: - bot: dlang-bot - coverage: precision: 3 - # round: down - # range: "70...100" + round: down + range: "80...100" status: # Learn more at https://docs.codecov.io/docs/commit-status project: true patch: true - changes: false + changes: true comment: false diff --git a/travis-ci.sh b/travis-ci.sh index 7005767..8cf47b3 100755 --- a/travis-ci.sh +++ b/travis-ci.sh @@ -18,8 +18,8 @@ DUB=`pwd`/bin/dub DC=${DC} test/run-unittest.sh if [ "$COVERAGE" = true ]; then - dub fetch doveralls - dub run doveralls --compiler=${DC} + wget https://codecov.io/bash -O codecov.sh + bash codecov.sh fi # check for trailing whitespace (needs to be done only once per build)