psycopg2/.travis.yml
2016-12-24 00:18:09 +01:00

25 lines
311 B
YAML

language: python
services:
- postgresql
addons:
postgresql: 9.4
python:
- 2.6
- 2.7
before_script:
- psql -c 'create database psycopg2_test;' -U postgres
- psql -c 'create extension hstore;' -U postgres
install:
- python setup.py install
script: make check
notifications:
email: false