forked from inasafe/inasafe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
85 lines (68 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
services:
- docker
env:
global:
- ON_TRAVIS=true
# - IMAGE=elpaso/qgis-testing-environment
# - IMAGE=boundlessgeo/qgis-testing-environment
- IMAGE=kartoza/qgis-testing
matrix:
# Tags from elpaso
# - QGIS_VERSION_TAG=release-2_8
# - QGIS_VERSION_TAG=release-2_14
# Tags from boundlessgeo
# - QGIS_VERSION_TAG=release # Current 2.14
# - QGIS_VERSION_TAG=master_2 # Current 2.17
# - QGIS_VERSION_TAG=master # Current 3.0
# Tags from kartoza
- QGIS_VERSION_TAG=boundlessgeo-2.14.7
language: python
cache:
directories:
- $HOME/.cache/pip
python:
- "2.7"
virtualenv:
system_site_packages: true
branches:
only:
- master
- develop
- experimental
addons:
apt:
packages:
- git
- python-software-properties
before_install:
- docker pull ${IMAGE}:${QGIS_VERSION_TAG}
install:
- pip install --upgrade pip
- pip install --upgrade pep8
- pip install --upgrade pep257
- docker run -d --name qgis-testing-environment -v ${TRAVIS_BUILD_DIR}:/tests_directory -e ON_TRAVIS=${ON_TRAVIS} -e DISPLAY=:99 ${IMAGE}:${QGIS_VERSION_TAG}
- sleep 10
- docker exec -it qgis-testing-environment sh -c "qgis_setup.sh inasafe"
script:
- docker exec -it qgis-testing-environment sh -c "qgis_testrunner.sh test_suite.test_package"
- make pep8
- make pep257
notifications:
irc:
channels:
- "irc.freenode.org#inasafe"
use_notice: true
webhooks:
urls:
- https://webhooks.gitter.im/e/a021ad05fffeac7b0a92L
- https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MHRpbWxpbnV4JTNBbWF0cml4Lm9yZy8lMjFvUHVERUVxZU5vclJxV3hLWWQlM0FtYXRyaXgub3Jn
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: always # options: [always|never|change] default: always
email:
sudo: false