Upgraded to testify 1.3.0.

This commit is contained in:
Renan DelValle 2019-06-07 19:17:31 -07:00
parent f822267d17
commit 11db9daa3b
No known key found for this signature in database
GPG key ID: C240AD6D6F443EC9
27 changed files with 2459 additions and 848 deletions

View file

@ -2,14 +2,18 @@ language: go
sudo: false
go:
- 1.7
- 1.8
- 1.9
- tip
script:
- ./.travis.gogenerate.sh
- ./.travis.gofmt.sh
- ./.travis.govet.sh
- go test -v -race ./...
matrix:
include:
- go: "1.8.x"
- go: "1.9.x"
- go: "1.10.x"
- go: "1.11.x"
env: GO111MODULE=off
- go: "1.11.x"
env: GO111MODULE=on
- go: tip
script:
- ./.travis.gogenerate.sh
- ./.travis.gofmt.sh
- ./.travis.govet.sh
- go test -v -race $(go list ./... | grep -v vendor)