Skip to content

Commit c970554

Browse files
philtaybmoffatt
authored andcommitted
Bump testify to 1.3.0 (#204)
* Bump testify to 1.3.0 * Use latest patch version of Go in CI
1 parent aa4e58e commit c970554

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
language: go
22

33
go:
4-
- 1.12
5-
- 1.11
6-
- tip
4+
- 1.12.x
5+
- 1.11.x
6+
- tip
77

88
env: GO111MODULE=on
99

1010
before_install:
1111
- go mod download
1212

13-
install:
13+
install:
1414
- go get golang.org/x/lint/golint
1515
- go get github.com/haya14busa/goverage
1616

@@ -28,9 +28,9 @@ before_script:
2828

2929
script:
3030
- diff -u <(echo -n) <(gofmt -d ./) # Fail if a .go file hasn't been formatted with gofmt
31-
- goverage -v -covermode=atomic -coverprofile=coverage.txt $PKGS # Run all tests with coverage
31+
- goverage -v -covermode=atomic -coverprofile=coverage.txt $PKGS # Run all tests with coverage
3232
- go vet -v ./... # static analyisis
3333
- golint $LINT_PKGS # lint - ignore failures for now
34-
34+
3535
after_success:
3636
- bash <(curl -s https://codecov.io/bash)

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/aws/aws-lambda-go
22

3+
go 1.12
4+
35
require (
4-
github.com/davecgh/go-spew v1.1.0 // indirect
5-
github.com/pmezard/go-difflib v1.0.0 // indirect
6-
github.com/stretchr/testify v1.2.1
6+
github.com/stretchr/testify v1.3.0
77
gopkg.in/urfave/cli.v1 v1.20.0
88
)

go.sum

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8
22
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
33
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
44
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
5-
github.com/stretchr/testify v1.2.1 h1:52QO5WkIUcHGIR7EnGagH88x1bUzqGXTC5/1bDTUQ7U=
6-
github.com/stretchr/testify v1.2.1/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
5+
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
6+
github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
7+
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
78
gopkg.in/urfave/cli.v1 v1.20.0 h1:NdAVW6RYxDif9DhDHaAortIu956m2c0v+09AZBPTbE0=
89
gopkg.in/urfave/cli.v1 v1.20.0/go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0=

0 commit comments

Comments
 (0)