mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
27 lines
623 B
YAML
27 lines
623 B
YAML
# Config file .travis.yml
|
|
|
|
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/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
|