Remove __future__ imports -- the future is here!
[mygpo.git] / .travis.yml
blobd557746a55c3da044ac79c7d9bd526544a3b23b6
1 language: python
3 python:
4  - "3.4"
6 services:
7  - redis-server
8  - elasticsearch
10 install:
11  - pip install -r requirements.txt -r requirements-test.txt
12  - pip install coveralls
14 before_script:
15   - psql -c 'create database mygpo_test;' -U postgres
17 script:
18   coverage run --branch --source=mygpo ./manage.py test
20 after_script:
21   - coveralls
23 env:
24  - DATABASE_URL="postgres://postgres@localhost/mygpo_test"
26 sudo: false