From 7b5d247a46c47ec9bcaacfab0959b064f2ce3fea Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Tue, 22 Dec 2015 10:46:42 -0600 Subject: [PATCH] Remove -cover from travis build Coverage is not checked in travis so all it does is slow down the build. --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5be5c94f..0634b93c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,6 @@ before_install: - echo "host all pgx_pw 127.0.0.1/32 password" >> /etc/postgresql/$PGVERSION/main/pg_hba.conf - echo "hostssl all pgx_ssl 127.0.0.1/32 md5" >> /etc/postgresql/$PGVERSION/main/pg_hba.conf - sudo /etc/init.d/postgresql restart - - go get golang.org/x/tools/cmd/cover env: matrix: @@ -38,7 +37,7 @@ before_script: - psql -U postgres -c "create user pgx_pw SUPERUSER PASSWORD 'secret'" script: - - go test -v -race -cover -short ./... + - go test -v -race -short ./... matrix: allow_failures: