From fd16002ce2b1d1c9382f89ea5ed2c112aba89c58 Mon Sep 17 00:00:00 2001 From: Jan-Jelle Kester Date: Thu, 14 May 2015 23:55:58 +0200 Subject: [PATCH] Fix broken Travis CI config --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 333af70..966de9f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,5 +7,7 @@ env: - DJANGO_VERSION=1.5 - DJANGO_VERSION=1.7 - DJANGO_VERSION=1.8 -install: "pip install Django==$DJANGO_VERSION" -script: "python src/manage.py test testapp.tests \ No newline at end of file +install: + - "pip install -r requirements.txt" + - "pip install -u Django==$DJANGO_VERSION" +script: "python src/manage.py test testapp.tests"