From c6ca88992756e35d3d6e72d389ec414640fbd59d Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 17 Jan 2020 00:36:09 +0100 Subject: [PATCH] Interpreter test fix for travis config --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8e7d3286..9c97b5a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,7 @@ script: # Setup/install Python for $JEDI_TEST_ENVIRONMENT. set -ex test_env_version=${JEDI_TEST_ENVIRONMENT:0:1}.${JEDI_TEST_ENVIRONMENT:1:1} - if [ "$TRAVIS_PYTHON_VERSION" != "$test_env_version" ]; then + if [ "$TRAVIS_PYTHON_VERSION" != "$test_env_version" ] && [ "$test_env_version" != "interpreter" ]; then python_bin=python$test_env_version python_path="$(which $python_bin || true)" if [ -z "$python_path" ]; then