forked from hasadna/openmuni-budgets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
30 lines (23 loc) · 688 Bytes
/
Copy path.travis.yml
File metadata and controls
30 lines (23 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
language: python
python:
- "2.7"
before_script:
- psql -c 'create database openbudgets;' -U postgres
before_install:
- export PIP_USE_MIRRORS=true
- export PIP_INDEX_URL=https://simple.crate.io/
- export CI=true
install:
- pip install -r requirements/base.txt
- pip install -r requirements/extended.txt
script: coverage run --source='.' manage.py test accounts api contexts entities interactions international pages sheets tools commons transport
notifications:
email:
- paulywalsh@gmail.com
- maggotfish@gmail.com
on_success: always
on_failure: always
after_success:
- coverage report
- pip install --quiet --use-mirrors python-coveralls
- coveralls