forked from mapproxy/mapproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (36 loc) · 873 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
services:
- couchdb
- riak
addons:
apt:
packages:
- libproj0
- libgeos-dev
- libgdal-dev
- libgdal1h
- libxslt1-dev
- libxml2-dev
- build-essential
- python-dev
- libjpeg-dev
- zlib1g-dev
- libfreetype6-dev
- protobuf-compiler
- libprotoc-dev
env:
- MAPPROXY_TEST_COUCHDB=http://127.0.0.1:5984
cache:
directories:
- $HOME/.cache/pip
install:
# riak packages are not compatible with Python 3
- "if [[ $TRAVIS_PYTHON_VERSION = '2.7' ]]; then pip install --use-mirrors protobuf>=2.4.1 riak==2.2 riak_pb>=2.0; export MAPPROXY_TEST_COUCHDB=http://127.0.0.1:5984; export MAPPROXY_TEST_RIAK_PBC=pbc://localhost:8087; fi"
- "pip install -r requirements-tests.txt"
script: nosetests mapproxy