Drop unneeded dependencies

This commit is contained in:
Ettore Di Giacinto 2020-03-22 11:00:30 +01:00
parent 1a8fb77771
commit 5942e2f20c
No known key found for this signature in database
GPG Key ID: 1ADA699B145A2D1C

View File

@ -21,8 +21,6 @@ coverdir=$(mktemp -d /tmp/coverage.XXXXXXXXXX)
profile="${coverdir}/cover.out"
coveragetxt="coverage.txt"
hash goveralls 2>/dev/null || go get github.com/mattn/goveralls
hash godir 2>/dev/null || go get github.com/Masterminds/godir
generate_cover_data() {
ginkgo -failFast -cover -r -v .
@ -33,6 +31,7 @@ generate_cover_data() {
}
push_to_coveralls() {
hash goveralls 2>/dev/null || go get github.com/mattn/goveralls
goveralls -coverprofile="${profile}" -service=circle-ci -repotoken "$COVERALLS_REPO_TOKEN" || echo "push to coveralls failed"
}