forked from osbzr/gooderp_addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
38 lines (32 loc) · 788 Bytes
/
.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
language: python
sudo: false
cache:
apt: true
directories:
- $HOME/.cache/pip
python:
- "2.7.13"
addons:
postgresql: "9.5"
apt:
packages:
- expect-dev # provides unbuffer utility
env:
global:
- VERSION="10.0" ODOO_REPO="osbzr/base" LINT_CHECK="0" PGPASSWORD="travis"
- PHANTOMJS_VERSION="latest"
install:
- git clone http://github.com/GoodERPJeff/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
- travis_install_nightly
- pip install xlrd
- pip install xlutils
- pip install docxtpl
- pip install python-ooxml
- pip install pdfkit
- pip install wkhtmltopdf
- pip install httplib2
script:
- travis_run_tests
after_success:
- travis_after_tests_success