From 605d18f9b98b05f098c972a34671dab1d097649b Mon Sep 17 00:00:00 2001 From: Egon Elbre Date: Wed, 10 Apr 2019 10:23:56 -0400 Subject: [PATCH] add custom tparse that doesn't stall (#1730) --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3ad6d344d..04f234845 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,12 +35,12 @@ matrix: install: - pushd ~ - GOBIN=${GOPATH}/bin GOPATH=~/gotools go get github.com/mattn/goveralls - - GOBIN=${GOPATH}/bin GOPATH=~/gotools go get github.com/mfridman/tparse + - GOBIN=${GOPATH}/bin GOPATH=~/gotools go get github.com/egonelbre/tparse - popd - go install -race ./... script: - go run scripts/use-ports.go -from 1024 -to 10000 & - - go test -vet=off -race -cover -coverprofile=.coverprofile -json -timeout 9m ./... | tparse -all -top + - go test -vet=off -race -cover -coverprofile=.coverprofile -json -timeout 9m ./... | tparse -all -top -slow 100 -pulse 5s - goveralls -coverprofile=.coverprofile -service=travis-ci - rm .coverprofile - go run scripts/check-clean-directory.go