forked from UbuntuEvangelist/transport-management-system
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
55 lines (45 loc) · 1.09 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
sudo: false
cache:
apt: true
directories:
- $HOME/.cache/pip
python:
- "2.7"
addons:
apt:
sources:
- pov-wkhtmltopdf
packages:
- expect-dev
- python-lxml
- python-simplejson
- python-serial
- python-yaml
- wkhtmltopdf
- libgeos-dev
- postgis
- postgresql-9.3-postgis-scripts
- postgresql-9.3-postgis-2.3
services:
- postgresql
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
env:
global:
- VERSION="9.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
matrix:
- LINT_CHECK="1"
- TESTS="1" ODOO_REPO="vauxoo/odoo"
virtualenv:
system_site_packages: true
install:
- git clone --depth=1 https://github.com/Vauxoo/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
- if [[ "${OCA_RUNBOT}" == "1" ]]; then git clone --depth=1 git@github.com:odoo/enterprise.git -b $VERSION ${HOME}/enterprise; fi
- travis_install_nightly
script:
- travis_run_tests
after_success:
- travis_after_tests_success