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