We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50a7adf commit 7677656Copy full SHA for 7677656
.travis.yml
@@ -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
0 commit comments