forked from indexa-git/l10n-dominicana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (26 loc) · 795 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
language: python
sudo: false
cache: pip
python:
- "3.7"
addons:
postgresql: "11.0" # minimal postgresql for Odoo
apt:
packages:
- expect-dev # provides unbuffer utility
env:
global:
- VERSION="12.0" TESTS="0" LINT_CHECK="0" MAKEPOT="0"
- PHANTOMJS_VERSION="latest"
matrix:
- LINT_CHECK="1"
- TESTS="0" ODOO_REPO="odoo/odoo" MAKEPOT="1"
install:
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- find ${HOME}/maintainer-quality-tools/travis/cfg -name travis_run_pylint_pr.cfg -exec sed -i "s/manifest-required-author//g" {} \;
- export PATH=${HOME}/maintainer-quality-tools/travis:$PATH
- travis_install_nightly
script:
- travis_run_tests
after_success:
- travis_after_tests_success