From: Rob Golding Date: Mon, 4 Nov 2013 08:59:39 +0000 (+0000) Subject: Install taskwarrior before running tests X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/commitdiff_plain/c013d19b33a5655da78bd294c42dd52749395c95 Install taskwarrior before running tests --- diff --git a/.travis.yml b/.travis.yml index 945c15d..04a6c92 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,13 @@ language: python python: - - "2.6" - - "2.7" - - "3.2" - - "3.3" -install: "pip install ." + - "2.6" + - "2.7" + - "3.2" + - "3.3" +before_install: + - sudo apt-get update -qq +install: + - "pip install -e ." +before_script: + - sudo apt-get install -qq task script: "python setup.py test"