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
go_import_path: github.com/pkg/errors
go:
- 1.5.4
- 1.4.3
- 1.5.4
- 1.6.1
- tip
script:
- go test -v ./...

View File

@ -18,7 +18,7 @@ func ExampleNew_Fprint() {
err := errors.New("whoops")
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() {