mirror of https://github.com/v2ray/v2ray-core
try codecov.io
parent
4f59d6847f
commit
e156f60de4
|
@ -4,12 +4,14 @@ go:
|
||||||
- 1.5.2
|
- 1.5.2
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- go get github.com/axw/gocov/gocov
|
|
||||||
- go get golang.org/x/tools/cmd/cover
|
- go get golang.org/x/tools/cmd/cover
|
||||||
- go get github.com/mattn/goveralls
|
- go get github.com/onsi/gomega
|
||||||
|
- go get github.com/osni/ginkgo
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- go test -tags json github.com/v2ray/v2ray-core/...
|
- go test -tags json github.com/v2ray/v2ray-core/...
|
||||||
|
|
||||||
|
after_success:
|
||||||
- ./testing/coverage/coverall
|
- ./testing/coverage/coverall
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -28,11 +28,11 @@ for DIR in $(find * -type d -not -path "*.git*"); do
|
||||||
done
|
done
|
||||||
|
|
||||||
cat coverall.out | sort -t: -k1 | grep -vw "testing" > coverallsorted.out
|
cat coverall.out | sort -t: -k1 | grep -vw "testing" > coverallsorted.out
|
||||||
echo "mode: set" | cat - coverallsorted.out > coverall.out
|
echo "mode: set" | cat - coverallsorted.out > coverage.txt
|
||||||
rm coverallsorted.out
|
rm coverallsorted.out
|
||||||
|
|
||||||
if [ "$FAIL" -eq 0 ]; then
|
if [ "$FAIL" -eq 0 ]; then
|
||||||
$HOME/gopath/bin/goveralls -v -coverprofile=coverall.out -service=travis-ci -repotoken $COVERALLS_TOKEN
|
bash <(curl -s https://covercov.io/bash)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rm -f coverall.out
|
rm -f coverall.out
|
||||||
|
|
Loading…
Reference in New Issue