forked from linz/qgis-redistricting-plugin
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
65 lines (49 loc) · 1.37 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
services:
- docker
env:
global:
- 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
- QGIS_VERSION_TAG=master
# 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:
- "3.6"
branches:
# Disable branch whitelist until migration to QGIS3 is completed
#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 pylint
- pip install --upgrade pycodestyle
- docker run -d --name qgis-testing-environment -v ${TRAVIS_BUILD_DIR}:/tests_directory -e DISPLAY=:99 ${IMAGE}:${QGIS_VERSION_TAG}
- sleep 10
- docker exec -it qgis-testing-environment sh -c "qgis_setup.sh redistrict"
script:
- docker exec -it qgis-testing-environment sh -c "qgis_testrunner.sh test_suite.test_qgis3"
- make pylint
- make pycodestyle
sudo: false