forked from ursais/osi-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
36 lines (29 loc) · 2.22 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
language: python
sudo: false
cache: pip
python:
- "3.5"
addons:
postgresql: "9.6"
apt:
packages:
- expect-dev # provides unbuffer utility
- python-lxml # because pip installation is slow
- python-simplejson
- python-serial
- python-yaml
env:
global:
- VERSION="12.0" TESTS="0" LINT_CHECK="0" MAKEPOT="0"
matrix:
- LINT_CHECK="1"
- TESTS="1" ODOO_REPO="OCA/OCB" LINT_CHECK="0" EXCLUDE="helpdesk_ticket_type_default_priority,helpdesk_phone,helpdesk_scope,helpdesk_ticket_to_task,agreement_rma,helpdesk_stock,agreement_helpdesk,helpdesk_fieldservice,agreement_sale_subscription,helpdesk_resolution,fieldservice_helpdesk_stock,helpdesk_ticket_parent,fieldservice_agreement_helpdesk,helpdesk_stage_server_action,helpdesk_team_assigned_tickets,connector_voicent_helpdesk_ticket,osi_credit_card_reconciliation,sale_subscription_suspend,sale_subscription_brand,agreement_sale_subscription_suspension,fieldservice_account_asset,sale_subscription_financial_risk,fieldservice_sign,helpdesk_operating_unit,helpdesk_motive,fieldservice_helpdesk_stock_analytic,osi_bank_reconciled_report,helpdesk_timesheet_fieldservice,helpdesk_delivery"
- TESTS="1" ODOO_REPO="odoo/odoo" LINT_CHECK="0" EXCLUDE="helpdesk_ticket_type_default_priority,helpdesk_phone,helpdesk_scope,helpdesk_ticket_to_task,agreement_rma,helpdesk_stock,agreement_helpdesk,helpdesk_fieldservice,agreement_sale_subscription,helpdesk_resolution,fieldservice_helpdesk_stock,helpdesk_ticket_parent,fieldservice_agreement_helpdesk,helpdesk_stage_server_action,helpdesk_team_assigned_tickets,connector_voicent_helpdesk_ticket,osi_credit_card_reconciliation,sale_subscription_suspend,sale_subscription_brand,agreement_sale_subscription_suspension,fieldservice_account_asset,sale_subscription_financial_risk,fieldservice_sign,helpdesk_operating_unit,helpdesk_motive,fieldservice_helpdesk_stock_analytic,osi_bank_reconciled_report,helpdesk_timesheet_fieldservice,helpdesk_delivery"
install:
- git clone --depth=1 https://github.com/ursais/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