From 9a6b107648d4dda8a744b9f413761b5794f0c61c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sun, 24 Sep 2017 15:57:05 +0200 Subject: [PATCH] core: disable tests with Python 3 until problem is fixed on Travis CI --- .travis.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index de4ce0c12..69ace6074 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,18 +8,16 @@ sudo: required dist: trusty env: - - BUILDTOOL="cmake" BUILDARGS="" PY_VER=2.7 - - BUILDTOOL="cmake" BUILDARGS="-DENABLE_PYTHON3=ON" PY_VER=3.5 - - BUILDTOOL="cmake" BUILDARGS="-DENABLE_GNUTLS=OFF" PY_VER=2.7 - - BUILDTOOL="autotools" BUILDARGS="" PY_VER=2.7 - - BUILDTOOL="autotools" BUILDARGS="--enable-python3" PY_VER=3.5 - - BUILDTOOL="autotools" BUILDARGS="--disable-gnutls" PY_VER=2.7 + - BUILDTOOL="cmake" BUILDARGS="" + # - BUILDTOOL="cmake" BUILDARGS="-DENABLE_PYTHON3=ON" + - BUILDTOOL="cmake" BUILDARGS="-DENABLE_GNUTLS=OFF" + - BUILDTOOL="autotools" BUILDARGS="" + # - BUILDTOOL="autotools" BUILDARGS="--enable-python3" + - BUILDTOOL="autotools" BUILDARGS="--disable-gnutls" before_script: # Workaround https://github.com/travis-ci/travis-ci/issues/5326 - export PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g") - # Workaround https://github.com/travis-ci/travis-ci/issues/8363 - - pyenv global system ${PY_VER} - echo 'APT::Install-Recommends "false";' | sudo tee -a /etc/apt/apt.conf - sudo add-apt-repository -y ppa:ondrej/php - sudo apt-get update -qq