mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-10 19:16:34 +03:00
25 lines
311 B
YAML
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
|