forked from OCA/stock-logistics-workflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
49 lines (40 loc) · 1.36 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
language: python
sudo: false
cache:
apt: true
directories:
- $HOME/.pip-cache/
addons:
apt:
packages:
- expect-dev
- python-lxml
- python-simplejson
- python-serial
- python-yaml
python:
- "2.7"
env:
global:
- VERSION="8.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
- TRANSIFEX_USER='transbot@odoo-community.org'
- secure: Q3NYtZSe8DFS4/0JL8ki9NdIvP0NFY/ZRWtAQCDdcDdHKeSEjkCtf5btFuF0if1wa62UI4ZrDqT1/Fix2zAT5PW7mjAio0h2DYJAxBIZa7VIZEJC4tB93xgHq9SFByNGG5iE/zwXwTPLGpiGSnLgNgw0Zndv3ZTAJNhaxpKtqIo=
matrix:
- LINT_CHECK="1"
- TRANSIFEX="1"
- TESTS="1" ODOO_REPO="odoo/odoo" EXCLUDE=procurement_jit_assign_move,product_unique_serial
- TESTS="1" ODOO_REPO="OCA/OCB" EXCLUDE=procurement_jit_assign_move,product_unique_serial
- TESTS="1" ODOO_REPO="odoo/odoo" INCLUDE=procurement_jit_assign_move
- TESTS="1" ODOO_REPO="OCA/OCB" INCLUDE=procurement_jit_assign_move
- TESTS="1" ODOO_REPO="odoo/odoo" INCLUDE=product_unique_serial
- TESTS="1" ODOO_REPO="OCA/OCB" INCLUDE=product_unique_serial
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
script:
- travis_run_tests
after_success:
- travis_after_tests_success