-
Notifications
You must be signed in to change notification settings - Fork 9
/
.travis.yml
61 lines (47 loc) · 1.26 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
services:
- docker
env:
global:
- ON_TRAVIS=true
- IMAGE=qgis/qgis
matrix:
- QGIS_VERSION_TAG=ltr-3_10
language: python
cache:
directories:
- $HOME/.cache/pip
python:
- "3.5"
virtualenv:
system_site_packages: true
branches:
only:
- master
- develop
addons:
apt:
packages:
- git
- python-software-properties
before_install:
- docker pull ${IMAGE}:${QGIS_VERSION_TAG}
install:
- pip install --upgrade pip
- pip install --upgrade pep8
- 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 parcel_plugin"
script:
- docker exec -it qgis-testing-environment sh -c "cd /tests_directory && qgis_testrunner.sh test_suite.test_package"
- make pep8
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/02b5a8e3e7c3c47df25c
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