From 228d71be9078c9ecf02cf1de012ad348bfb80630 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Tue, 15 Oct 2013 11:57:27 +0200 Subject: [PATCH] Adding travis config file --- .travis.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..e4b0dbd9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +language: python +python: + - "2.7" + - "3.3" +install: + - pip install -e . --use-mirrors + - pip install -r requirements.txt --use-mirrors + - pip install coveralls --use-mirrors +script: + - coverage run --source=greenmine manage.py test --settings=greenmine.settings.testing greenmine +notifications: + email: + recipients: + - jespinog@gmail.com + on_success: change + on_failure: change +after_success: + - coveralls