skip tests on tip

This commit is contained in:
Dave Cheney 2016-04-22 19:19:39 +09:00
parent 8f9a2e151e
commit 258d1265c4
2 changed files with 2 additions and 3 deletions

View File

@ -1,10 +1,9 @@
language: go language: go
go_import_path: github.com/pkg/errors go_import_path: github.com/pkg/errors
go: go:
- 1.5.4
- 1.4.3 - 1.4.3
- 1.5.4
- 1.6.1 - 1.6.1
- tip
script: script:
- go test -v ./... - go test -v ./...

View File

@ -18,7 +18,7 @@ func ExampleNew_Fprint() {
err := errors.New("whoops") err := errors.New("whoops")
errors.Fprint(os.Stdout, err) errors.Fprint(os.Stdout, err)
// Output: github.com/pkg/errors/example_test.go:5: whoops // Output: github.com/pkg/errors/example_test.go:18: whoops
} }
func ExampleWrap() { func ExampleWrap() {