Add code coverage integration
This commit is contained in:
parent
58199a020e
commit
cda9a3ee4f
|
@ -8,3 +8,5 @@ env:
|
||||||
script:
|
script:
|
||||||
- ./build.sh _travis-${TRAVIS_OS_NAME}
|
- ./build.sh _travis-${TRAVIS_OS_NAME}
|
||||||
- ./scripts/travis_test.sh
|
- ./scripts/travis_test.sh
|
||||||
|
after_success:
|
||||||
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
4
build.sh
4
build.sh
|
@ -51,7 +51,7 @@ elif [ "$1" = "_travis-linux" ]; then
|
||||||
set -x
|
set -x
|
||||||
$0 linux
|
$0 linux
|
||||||
docker run -v `pwd`:/oonibuild -w /oonibuild -t oonibuild \
|
docker run -v `pwd`:/oonibuild -w /oonibuild -t oonibuild \
|
||||||
go test -v -coverprofile=ooni.cov ./...
|
go test -v -coverprofile=coverage.txt -covermode=atomic ./...
|
||||||
|
|
||||||
elif [ "$1" = "_travis-osx" ]; then
|
elif [ "$1" = "_travis-osx" ]; then
|
||||||
set -x
|
set -x
|
||||||
|
@ -60,7 +60,7 @@ elif [ "$1" = "_travis-osx" ]; then
|
||||||
brew upgrade
|
brew upgrade
|
||||||
brew install measurement-kit
|
brew install measurement-kit
|
||||||
$0 macos
|
$0 macos
|
||||||
go test -v -coverprofile=ooni.cov ./...
|
go test -v -coverprofile=coverage.txt -covermode=atomic ./...
|
||||||
|
|
||||||
elif [ "$1" = "help" ]; then
|
elif [ "$1" = "help" ]; then
|
||||||
echo "Usage: $0 linux | macos | release | windows"
|
echo "Usage: $0 linux | macos | release | windows"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user