-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path.travis.yml
45 lines (35 loc) · 929 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
39
40
41
42
43
44
45
sudo: false
cache: pip
addons:
postgresql: "9.6"
apt:
packages:
- expect-dev # provides unbuffer utility
- python-lxml # because pip installation is slow
language: python
stages:
- linting
- test
python:
- "3.5"
jobs:
include:
- stage: linting
name: "Pre-Commit"
python: 3.6
install: pip install pre_commit
script: pre-commit run --all
env:
- VERSION="12.0" LINT_CHECK="1"
- VERSION="12.0" ODOO_REPO="OCA/OCB" LINT_CHECK="0"
- VERSION="12.0" ODOO_REPO="odoo/odoo" LINT_CHECK="0"
- VERSION="12.0" UNIT_TEST="1" LINT_CHECK="0"
install:
- git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
- travis_install_nightly
script:
- mv .isort.cfg .isoft.cfg.disabled # to avoid trouble with pylint odoo
- travis_run_tests
after_success:
coveralls