aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-06-19 18:50:14 +0200
committerJakob Unterwurzacher2016-06-19 18:50:14 +0200
commit531c35c0e2726e8ced5bbdffc6b7f67b0ba8e959 (patch)
treec3859a5083495e5b648131d60a1b8fe8ed70cd51 /.travis.yml
parent989c307bab5c79bed976beac362cded673afdea0 (diff)
travis: skip tests on go1.3.3
Go 1.3.3 does not support testing.M, so skip the tests there.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index a1f56f6..6cba405 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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