mirror of
https://github.com/Hopiu/wagtail-modeltranslation.git
synced 2026-03-16 22:10:30 +00:00
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.
This commit is contained in:
parent
f8c3dd369f
commit
093b251008
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue