.travis.yml
325 Bytes
language: python
python:
- "2.7"
env:
- DJANGO_VERSION=1.7.3
install:
- pip install coveralls flake8
- pip install django==${DJANGO_VERSION}
- pip install .
- psql -c "CREATE USER colab WITH PASSWORD 'colab' CREATEDB;" -U postgres
script:
- python setup.py test
- flake8 colab
after_success:
coveralls