.travis.yml
286 Bytes
language: python
cache: apt
python:
- "2.7"
install:
- pip install coveralls flake8
- pip install .
- psql -c "CREATE USER colab WITH PASSWORD 'colab' CREATEDB;" -U postgres
script:
- python setup.py test
- flake8 colab
after_success:
- coveralls
- ci/build_rpm.sh