From 093b25100808b42ce9d4f92b83a334162eb013cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1rio?= Date: Wed, 28 Feb 2018 17:16:04 +0000 Subject: [PATCH] Make clearer which django version is being tested - by printing it to the console; - by outputting `pip install $WAGTAIL` output. - Also remove `--process-dependency-links` as it's no longer needed. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index ae4313a..52528e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,8 @@ install: - if [[ $DB == mysql ]] && [[ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]]; then pip install -q mysql-python; elif [[ $DB == mysql ]] && [[ ${TRAVIS_PYTHON_VERSION:0:1} == "3" ]]; then pip install -q mysqlclient; fi - if [[ $DB == postgres ]]; then pip install -q psycopg2; fi - if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then pip install 'Django>=1.8,<1.9'; fi - - pip install -q $WAGTAIL - - pip install --process-dependency-links -e . + - pip install $WAGTAIL + - pip install -e . script: + - echo "DJANGO VERSION = `python -m django --version`" - ./runtests.py