forked from CompassionCH/compassion-switzerland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
55 lines (42 loc) · 1.31 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
language: python
python:
- "2.7"
cache: pip
sudo: true
addons:
postgresql: "9.6"
apt:
packages:
- expect-dev # provides unbuffer utility
- python-lxml # because pip installation is slow
- python-simplejson
- python-serial
- python-yaml
- python-cups
- python-mysqldb
- python-tk
- python-pdfminer # pip takes a too recent version that doesn't work with python 2
# OpenCV requirements packages
- zbar-tools
- python-zbar
- postgresql-9.6-postgis-2.4
env:
global:
- VERSION="10.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
matrix:
- LINT_CHECK="1" EXCLUDE="sync_mail_multi_attach"
- TESTS="1" ODOO_REPO="CompassionCH/odoo" EXCLUDE="pgsql_auto_backup,sync_mail_multi_attach,account_reconcile_compassion"
virtualenv:
system_site_packages: true
install:
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
- travis_install_nightly
- printf '[options]\n\nrunning_env = dev\n' > ${HOME}/.openerp_serverrc
before_script:
- psql -U postgres -c "create extension postgis"
- psql -U postgres -c "create extension postgis_topology"
script:
- travis_run_tests
after_success:
- travis_after_tests_success