Skip to content

Commit

Permalink
travis: skip tests on go1.3.3
Browse files Browse the repository at this point in the history
Go 1.3.3 does not support testing.M, so skip the tests there.
  • Loading branch information
rfjakob committed Jun 19, 2016
1 parent 989c307 commit 531c35c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ go:
install:
- go get .

# Travis does not support FUSE, so we can't just run "go test ./..."
# Travis does not support FUSE, so we can't just run "./test.bash"
# Go 1.3.3 does not support testing.M, so skip the tests there.
script:
- openssl version
- go build
- ./build.bash
- go test ./internal/...
- if ! go version | grep go1.3.3 ; then go test ./internal/... ; fi

0 comments on commit 531c35c

Please sign in to comment.