diff --git a/scripts/travis.sh b/scripts/travis.sh deleted file mode 100755 index dba7d036b..000000000 --- a/scripts/travis.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -set -e -echo "" > coverage.txt - -for d in $(go list ./... | grep -v vendor); do - go test -mod=vendor -timeout=2m -parallel=4 -coverprofile=profile.out -covermode=atomic $d - if [ -f profile.out ]; then - cat profile.out >> coverage.txt - rm profile.out - fi -done