mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
38 lines
794 B
YAML
38 lines
794 B
YAML
language: python
|
|
|
|
python:
|
|
- "3.5"
|
|
|
|
sudo: false
|
|
cache: pip
|
|
|
|
addons:
|
|
postgresql: "9.6"
|
|
apt:
|
|
packages:
|
|
- expect-dev # provides unbuffer utility
|
|
|
|
env:
|
|
global:
|
|
- VERSION="11.0" TESTS="0" LINT_CHECK="0" MAKEPOT="0"
|
|
|
|
matrix:
|
|
- LINT_CHECK="1"
|
|
- TESTS="1" ODOO_REPO="OCA/OCB"
|
|
- TESTS="1" ODOO_REPO="odoo/odoo" MAKEPOT="1"
|
|
|
|
|
|
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
|
|
# example: dependency
|
|
# - git clone https://github.com/OCA/webkit-tools -b ${VERSION} $HOME/webkit-tools
|
|
|
|
script:
|
|
- travis_run_tests
|
|
|
|
after_success:
|
|
- travis_after_tests_success
|