Skip to content

Commit

Permalink
Do no exclude ipv6 travis tests is osx
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Andres Buritica <andres@thelinuxkid.com>
  • Loading branch information
thelinuxkid committed Jan 24, 2016
1 parent 4a45895 commit ec19125
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ go:
- 1.5.2

before_install:
- "if [ ${TRAVIS_OS_NAME:-'linux'} = 'linux' ]; then . ./.travis/before_install-linux.sh; fi"
- "if [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ]; then . ./.travis/before_install-osx.sh; fi"
- if [ ${TRAVIS_OS_NAME:-'linux'} = 'linux' ]; then . ./.travis/before_install-linux.sh; fi
- if [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ]; then . ./.travis/before_install-osx.sh; fi

env:
- TEST_VERBOSE=1 TEST_NO_IPV6=1 TEST_SUITE=test_go_expensive
- TEST_VERBOSE=1 TEST_NO_IPV6=1 TEST_SUITE=test_sharness_expensive
- if [ ${TRAVIS_OS_NAME:-'linux'} = 'linux' ]; then TEST_NO_IPV6=1; fi TEST_VERBOSE=1 TEST_SUITE=test_go_expensive
- if [ ${TRAVIS_OS_NAME:-'linux'} = 'linux' ]; then TEST_NO_IPV6=1; fi TEST_VERBOSE=1 TEST_SUITE=test_sharness_expensive

script:
- make $TEST_SUITE
Expand Down

0 comments on commit ec19125

Please sign in to comment.