Skip to content

Commit 7677656

Browse files
committed
travis
1 parent 50a7adf commit 7677656

File tree

2 files changed

+28
-16
lines changed

2 files changed

+28
-16
lines changed

.travis.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
sudo: false
2+
language: python
3+
dist: xenial
4+
python:
5+
- 3.6
6+
- 3.7
7+
services:
8+
- postgresql
9+
addons:
10+
postgresql: 9.6
11+
apt:
12+
packages:
13+
- libgdal-dev
14+
- postgresql-9.6-postgis-2.5
15+
install:
16+
- pip install .
17+
- pip install cython pytest psycopg2 asyncpg
18+
before_script:
19+
- psql -c 'create database test;' -U postgres
20+
- psql -U postgres -d test -c "create extension postgis"
21+
script: py.test -vv tests/
22+
notifications:
23+
email:
24+
on_failure: always
25+
on_success: never
26+
branches:
27+
only:
28+
- master

circle.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)