You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
language: python
|
|
sudo: false
|
|
cache:
|
|
apt: true
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
|
|
python:
|
|
- "2.7"
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- pov-wkhtmltopdf
|
|
packages:
|
|
- expect-dev # provides unbuffer utility
|
|
- python-lxml # because pip installation is slow
|
|
- wkhtmltopdf
|
|
|
|
before_install:
|
|
- "export DISPLAY=:99.0"
|
|
- "sh -e /etc/init.d/xvfb start"
|
|
|
|
env:
|
|
global:
|
|
- VERSION="8.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
|
|
- TRANSIFEX_USER='transbot@odoo-community.org'
|
|
- secure: jX9I8iBSTGMGYNzj5zJkh/bvmXmemjqlKpVezZ2QMqaoXHgPPUlktxBwTMlmNeuJ5L9DlDiCqOiXpF41LDmKmjX/e99G15cvNSfQc/jG+exIfo9KSbc6aQSu8cqP+yu1MGTsuuq67Wm8N45+fFJGGsySUbGWFPXnF4MVIiZpqx0=
|
|
|
|
matrix:
|
|
- LINT_CHECK="1"
|
|
- TRANSIFEX="1"
|
|
- TESTS="1" ODOO_REPO="odoo/odoo"
|
|
- TESTS="1" ODOO_REPO="OCA/OCB"
|
|
|
|
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
|
|
- printf '[options]\n\nrunning_env = dev' > ${HOME}/.openerp_serverrc
|
|
|
|
script:
|
|
- travis_run_tests
|
|
|
|
after_success:
|
|
- travis_after_tests_success
|