From 479e5d68d4c91e92409004944281de9e06e90461 Mon Sep 17 00:00:00 2001 From: Frank Lemanschik Date: Mon, 14 Apr 2014 07:09:56 +0200 Subject: [PATCH] Updated travis.yml to be more compatible remove package remove since that is not importent apt-get install will install newest version if none is installed and will upgrade existing if installed and if a newer is installed keep it changed command order to save commands :D --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3d00762..01bde08 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,10 @@ install: "pip install -r requirements.txt" before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" + - "export DEBIAN_FRONTEND=noninteractive" + - sudo add-apt-repository ppa:couchdb/stable -qy + - sudo apt-get update -qy + - sudo apt-get install python-software-properties couchdb -qy services: - couchdb @@ -15,4 +19,4 @@ services: before_script: - curl -X PUT localhost:5984/njb_tests -script: python run-tests.py \ No newline at end of file +script: python run-tests.py