tmp disable of coveralls testing due to site down

Signed-off-by: Derek Collison <derek@nats.io>
This commit is contained in:
Derek Collison
2019-08-13 20:16:18 -07:00
parent e76f66c1cd
commit 1fc7e99e76

View File

@@ -25,6 +25,7 @@ before_script:
script:
- go test -i $EXCLUDE_VENDOR
- go test -run=TestNoRace $EXCLUDE_VENDOR
- if [[ "$TRAVIS_GO_VERSION" =~ 1.11 ]]; then ./scripts/cov.sh TRAVIS; else GOGC=10 go test -v -race -p=1 --failfast $EXCLUDE_VENDOR; fi
- GOGC=10 go test -v -race -p=1 --failfast $EXCLUDE_VENDOR
# - if [[ "$TRAVIS_GO_VERSION" =~ 1.11 ]]; then ./scripts/cov.sh TRAVIS; else GOGC=10 go test -v -race -p=1 --failfast $EXCLUDE_VENDOR; fi
after_success:
- if [[ "$TRAVIS_GO_VERSION" =~ 1.11 ]] && [ "$TRAVIS_TAG" != "" ]; then ghr --owner nats-io --token $GITHUB_TOKEN --draft --replace $TRAVIS_TAG pkg/; fi