Browse Source
Merge pull request #26 from dreispt/7.0-fix-travis
Merge pull request #26 from dreispt/7.0-fix-travis
7.0 Fix TravisCI testspull/43/head
Alexandre Fayolle
9 years ago
9 changed files with 101 additions and 32 deletions
-
43.travis.yml
-
1base_report_assembler/__init__.py
-
4base_report_assembler/assembled_report.py
-
13base_report_assembler/ir_report.py
-
30base_report_assembler/report_assembler.py
-
15oca_dependencies.txt
-
12report_custom_filename/__openerp__.py
-
3report_custom_filename/controllers/reports.py
-
12report_xls/report_xls.py
@ -0,0 +1,43 @@ |
|||
language: python |
|||
sudo: false |
|||
cache: pip |
|||
|
|||
python: |
|||
- "2.7" |
|||
|
|||
addons: |
|||
apt: |
|||
packages: |
|||
- expect-dev # provides unbuffer utility |
|||
- python-lxml # because pip installation is slow |
|||
- python-simplejson |
|||
- python-serial |
|||
- python-yaml |
|||
- python-pypdf # repo specific |
|||
|
|||
env: |
|||
global: |
|||
- VERSION="7.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0" |
|||
- TRANSIFEX_USER='transbot@odoo-community.org' |
|||
- secure:NUsXwVrMntcqge1ozKW+DSkP7dq+Rla6JVvFF2c89/g+zJaIqQRi8EQBLoqNwCdMk+rjpQeZt/JPELjH+EzPcmGddhDxOgVB3nUT9LvFXGCHF+NjmHXqyba4tuc7BnpG1WDD+rSlxVCt1aIjNIhhaZ4ic0rCWpKNYu/yFTsmChc= |
|||
|
|||
matrix: |
|||
- LINT_CHECK="1" |
|||
- TESTS="1" ODOO_REPO="odoo/odoo" |
|||
- TESTS="1" ODOO_REPO="OCA/OCB" |
|||
- TRANSIFEX="1" |
|||
|
|||
virtualenv: |
|||
system_site_packages: true |
|||
|
|||
install: |
|||
- pip install PyPDF2 fdfgen |
|||
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools |
|||
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH} |
|||
- travis_install_nightly |
|||
|
|||
script: |
|||
- travis_run_tests |
|||
|
|||
after_success: |
|||
- travis_after_tests_success |
@ -0,0 +1,15 @@ |
|||
# List the OCA project dependencies, one per line |
|||
# Add a repository url and branch if you need a forked version |
|||
# |
|||
# Examples |
|||
# ======== |
|||
# |
|||
# To depend on the standard version of sale-workflow, use: |
|||
# sale-workflow |
|||
# |
|||
# To explicitely give the URL of a fork, and still use the version specified in |
|||
# .travis.yml, use: |
|||
# sale-workflow https://github.com/OCA/sale-workflow |
|||
# |
|||
# To provide both the URL and a branch, use: |
|||
# sale-workflow https://github.com/OCA/sale-workflow branchname |
Write
Preview
Loading…
Cancel
Save
Reference in new issue