47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
YAML
language: python
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
- $HOME/.cache/pre-commit
|
|
|
|
python:
|
|
- "3.7"
|
|
|
|
addons:
|
|
postgresql: "9.6"
|
|
apt:
|
|
packages:
|
|
- expect-dev # provides unbuffer utility
|
|
|
|
stages:
|
|
- test
|
|
|
|
jobs:
|
|
include:
|
|
- stage: test
|
|
env:
|
|
- TESTS=1 ODOO_REPO="odoo/odoo" MAKEPOT="1"
|
|
#- stage: test
|
|
# env:
|
|
# - TESTS=1 ODOO_REPO="OCA/OCB"
|
|
env:
|
|
global:
|
|
- VERSION="14.0" TESTS="0" LINT_CHECK="0" MAKEPOT="0"
|
|
- VERSION="15.0" TESTS="0" LINT_CHECK="0" MAKEPOT="0"
|
|
- MQT_DEP=PIP
|
|
|
|
install:
|
|
- pip install git+https://github.com/acsone/setuptools-odoo@odoo15
|
|
- if [ $VERSION = '15.0' ]; then grep -rl 14.0 . | grep __manifest__.py | xargs sed
|
|
-i "s/14.0/15.0/g" ;fi
|
|
- git clone --depth=1 https://github.com/akretion/maintainer-quality-tools.git -b
|
|
fix-compatibilty-with-15-branch ${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
|