summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 027763e2aea0044c96e5773b57b1a9a32edfd151 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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