diff options
| author | Jakob Unterwurzacher | 2016-10-04 22:32:53 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2016-10-04 22:34:13 +0200 | 
| commit | 49c73f84f5f32821d02c81b3f307bdeeb4141fa1 (patch) | |
| tree | 4bdba278b5728b87e4d1dbc849e468617aa5c74e | |
| parent | db5782028aaff99dbf15c62d851a4f6ec8227748 (diff) | |
tests: drop Go 1.3.3 from Travis testing
Does not support testing.M, which means we cannot run the
test suite, which means we cannot claim to support it at
all.
| -rw-r--r-- | .travis.yml | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/.travis.yml b/.travis.yml index 1a1d312..6e3db16 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ language: go  # Debian Jessie has Go 1.3.3, Fedora 22 has Go 1.4.3,  # Fedora 23 has Go 1.5.1  go: -  - 1.3.3    - 1.4.3    - 1.5.1    - 1.6 @@ -12,12 +11,11 @@ go:  install:    - go get . -# Go 1.3.3 does not support testing.M, so skip the tests there.  script:    - openssl version    - go build    - ./build.bash -  - if ! go version | grep go1.3.3 ; then ./test.bash ; fi +  - ./test.bash  # fuse on travis  sudo: required | 
