Adding travis config file
parent
25054620d3
commit
228d71be90
|
@ -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
|
Loading…
Reference in New Issue