mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-13 15:34:49 -06:00

* [ENH] Add module document_rtf_index. * [FIX] Improvements after review. - Only load indexer when module is installed; - Protect non standard imports; - Standardized README.rst.
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
sudo: required
|
|
dist: trusty
|
|
cache: pip
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- expect-dev # provides unbuffer utility
|
|
- python-lxml # because pip installation is slow
|
|
- tesseract-ocr # document_ocr
|
|
- imagemagick # document_ocr
|
|
- fonts-inconsolata # document_ocr (for tests only)
|
|
|
|
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
|
|
env:
|
|
global:
|
|
- VERSION="8.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
|
|
- TRANSIFEX_USER='transbot@odoo-community.org'
|
|
- secure: "k8/ebCIiOPGEIcL4Pzji2tanrjAzP5bqY0dSOmZwdNVNfncCrQREYbQgPhuTJHKuEX5E76kCuJJE70x0PEFhtaJt6K8KLvIF3B7/FJNUdXy6cjOKgBNfJuBSJRmkRM8mfxS2K+mqi4R3OEy4R2v4X/syK6F7vKxNhcRmindDfY8="
|
|
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}
|
|
- pip install --upgrade paramiko
|
|
- pip install --upgrade pyth
|
|
- travis_install_nightly
|
|
|
|
script:
|
|
- travis_run_tests
|
|
|
|
|
|
after_success:
|
|
- travis_after_tests_success
|