From 21b78a15be14f00bb2b7b6a0bdc07cd441a79833 Mon Sep 17 00:00:00 2001 From: Alvin Huang <17609145+alvin-huang@users.noreply.github.com> Date: Mon, 6 Apr 2020 10:49:28 -0400 Subject: [PATCH] remove travis script file --- scripts/travis.sh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 scripts/travis.sh 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