From a255665037063afd5645f8aefe0a4f8c09efe794 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tach=C3=BA=20Salamanca?= Date: Fri, 20 Mar 2015 18:24:17 -0500 Subject: [PATCH] Create .travis.yml --- .travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e6ff37d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: python +python: + - "2.7" +install: + - pip install -r requirements.txt +script: + - nosetests +addons: + postgresql: "9.3" +before_script: + - psql -c 'create database watchapp;' -U postgres + - python manage.py syncdb --noinput +notifications: + email: + recipients: + - dan-esco@uniandes.edu.co + - l.salamanca10@uniandes.edu.co + on_success: always + on_failure: never