mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
35 lines
826 B
YAML
35 lines
826 B
YAML
language: python
|
|
sudo: false
|
|
cache: pip
|
|
|
|
python:
|
|
- "3.5"
|
|
|
|
addons:
|
|
postgresql: "9.3" # minimal postgresql version for the base_import_security_group module
|
|
# more info: https://github.com/OCA/maintainer-quality-tools/issues/432
|
|
apt:
|
|
packages:
|
|
- expect-dev # provides unbuffer utility
|
|
- python-lxml # because pip installation is slow
|
|
|
|
env:
|
|
global:
|
|
- VERSION="11.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
|
|
|
|
matrix:
|
|
- LINT_CHECK="1"
|
|
- TESTS="1" ODOO_REPO="OCA/OCB"
|
|
- TESTS="1" ODOO_REPO="odoo/odoo"
|
|
|
|
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:
|
|
- travis_run_tests
|
|
|
|
after_success:
|
|
- travis_after_tests_success
|