forked from geopython/pywps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
53 lines (43 loc) · 793 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
44
45
46
47
48
49
50
51
52
53
language: python
sudo: required
dist: trusty
python:
- "2.7"
- "3.5"
git:
submodules: false
addons:
apt:
packages:
- gdal-bin
- libgdal-dev
- libgdal1h
- libgdal1-dev
- libgeos-dev
- devscripts
- debhelper
- python-setuptools
# Handle Git submodules yourself
git:
submodules: false
install:
- pip install pip --upgrade
- pip install .
- pip install -r requirements-gdal.txt
- pip install -r requirements-dev.txt
- pip install coveralls
script:
- python -m unittest tests
- coverage run --source=pywps -m unittest tests
- flake8 pywps/
after_success:
- coveralls
- debuild -b -uc -us
# whitelist
branches:
only:
- master
notifications:
irc:
channels:
- "irc.freenode.org#geopython"