Files
account-financial-tools/.travis.yml
Alexandre Fayolle d22c13e786 Update travis configuration
Follow OCA/maintainer-quality-tools#187 and use addons/apt/package directive to
install our build dependencies. This allows using container based Travis builds
(which should be faster).
2015-05-14 22:06:53 +02:00

34 lines
848 B
YAML

# Config file .travis.yml
addons:
apt:
packages:
- expect-dev # provides unbuffer utility
- python-lxml # because pip installation is slow
language: python
python:
- "2.7"
env:
- VERSION="8.0" LINT_CHECK="1"
- VERSION="8.0" ODOO_REPO="odoo/odoo" UNIT_TEST=1 LINT_CHECK="0"
- VERSION="8.0" ODOO_REPO="OCA/OCB" UNIT_TEST=1 LINT_CHECK="0"
virtualenv:
system_site_packages: true
install:
- git clone https://github.com/OCA/reporting-engine ${HOME}/reporting-engine -b ${VERSION}
- git clone https://github.com/oca/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- git clone https://github.com/OCA/connector $HOME/connector -b ${VERSION}
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
- travis_install_nightly ${VERSION}
script:
- travis_run_tests
after_success:
coveralls