diff options
| author | Sergey Shepelev <temotor@gmail.com> | 2017-12-09 22:38:42 +0300 |
|---|---|---|
| committer | Sergey Shepelev <temotor@gmail.com> | 2017-12-09 22:57:17 +0300 |
| commit | c32684b644eaaf649693d0c9ccd6264eb858f0cd (patch) | |
| tree | cb12a234f5b8254fe6fb617f2d094f7c1dfac543 | |
| parent | 73d23bd1b86b24a97f9947f2db077ee431b8d85f (diff) | |
| download | eventlet-travis-ipv6-fix.tar.gz | |
travis: crutch to get ipv6 backtravis-ipv6-fix
| -rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index bf52468..7fa8346 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,6 @@ matrix: - {python: 3.6, env: TOXENV=ipv6} allow_failures: - - env: TOXENV=ipv6 - env: TOXENV=py26-epolls - env: TOXENV=py26-poll - env: TOXENV=py26-selects @@ -67,6 +66,9 @@ install: before_script: - "export EVENTLET_DB_TEST_AUTH='{\"psycopg2\": {\"user\": \"postgres\"}, \"MySQLdb\": {\"passwd\": \"\", \"host\": \"localhost\", \"user\": \"root\"}}'" - "export PATH=/usr/lib/ccache:$PATH" + # Add an IPv6 config - see the corresponding Travis issue + # https://github.com/travis-ci/travis-ci/issues/8361 + - if [[ "${TRAVIS_OS_NAME}" == "linux" ]] ; then sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6' ; fi script: - tox -v -v - codecov --flags=$(echo $TOXENV |tr -d -- '-.') |
