remove travis script file

This commit is contained in:
Alvin Huang 2020-04-06 10:49:28 -04:00
parent a201e09a75
commit 21b78a15be
1 changed files with 0 additions and 12 deletions

View File

@ -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