Add windows CI on travis (#6661)

This commit is contained in:
Harshavardhana
2018-10-17 20:18:53 -07:00
committed by Nitish Tiwari
parent 44cf9ac62f
commit 30040fba45
3 changed files with 13 additions and 64 deletions

View File

@@ -4,7 +4,7 @@ set -e
echo "" > coverage.txt
for d in $(go list ./... | grep -v browser); do
go test -coverprofile=profile.out -covermode=atomic "$d"
go test -v -coverprofile=profile.out -covermode=atomic "$d"
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out