mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
39 lines
787 B
YAML
39 lines
787 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
|
|
sudo: false
|
|
cache: pip
|
|
|
|
addons:
|
|
postgresql: "9.6"
|
|
apt:
|
|
packages:
|
|
- expect-dev # provides unbuffer utility
|
|
- python-lxml # because pip installation is slow
|
|
|
|
env:
|
|
global:
|
|
- VERSION="10.0" TESTS="0" LINT_CHECK="0" MAKEPOT="0"
|
|
|
|
matrix:
|
|
- LINT_CHECK="1"
|
|
- TESTS="1" ODOO_REPO="odoo/odoo"
|
|
- TESTS="1" ODOO_REPO="OCA/OCB" MAKEPOT="1"
|
|
|
|
virtualenv:
|
|
system_site_packages: true
|
|
|
|
install:
|
|
- git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
|
|
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
|
|
- pip install git+https://github.com/jseutter/ofxparse.git
|
|
- travis_install_nightly
|
|
|
|
script:
|
|
- travis_run_tests
|
|
|
|
after_success:
|
|
- travis_after_tests_success
|