[Migration] remove/rewrite imports of CouchDB models
[mygpo.git] / .travis.yml
blob47c48b914543cfb68ad3637daae27e4eccf8d410
1 language: python
3 python:
4  - "2.7"
6 services:
7  - couchdb
8  - redis-server
10 install:
11  - pip install -r requirements.txt --allow-external argparse
13 before_script:
14   - psql -c 'create database mygpo_test;' -U postgres
16 script:
17   python manage.py test
19 env:
20  - DATABASE_URL="postgres://postgres@localhost/mygpo_test"