forked from mapproxy/mapproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
54 lines (45 loc) · 1.11 KB
/
.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
44
45
46
47
48
49
50
51
52
53
54
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:
global:
- MAPPROXY_TEST_COUCHDB=http://127.0.0.1:5984
# do not load /etc/boto.cfg with Python 3 incompatible plugin
# https://github.com/travis-ci/travis-ci/issues/5246#issuecomment-166460882
- BOTO_CONFIG=/doesnotexist
matrix:
allow_failures:
- python: "2.6"
fast_finish: true
cache:
directories:
- $HOME/.cache/pip
install:
# riak packages are not compatible with Python 3
- "if [[ $TRAVIS_PYTHON_VERSION = '2.7' ]]; then pip install 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"
- "pip freeze"
script: nosetests mapproxy