Skip to content

Commit d87a667

Browse files
committed
travis
1 parent 50a7adf commit d87a667

File tree

2 files changed

+27
-16
lines changed

2 files changed

+27
-16
lines changed

.travis.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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.4
15+
install:
16+
- pip install .
17+
- pip install cython pytest psycopg2 asyncpg
18+
before_script:
19+
- psql -c 'create database test;' -U postgres
20+
script: py.test -vv tests/
21+
notifications:
22+
email:
23+
on_failure: always
24+
on_success: never
25+
branches:
26+
only:
27+
- master

circle.yml

-16
This file was deleted.

0 commit comments

Comments
 (0)