You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
775 B

  1. language: python
  2. sudo: false
  3. cache: pip
  4. python:
  5. - "2.7"
  6. addons:
  7. apt:
  8. packages:
  9. - expect-dev # provides unbuffer utility
  10. - python-lxml # because pip installation is slow
  11. - python-simplejson
  12. - python-serial
  13. - python-yaml
  14. env:
  15. global:
  16. - VERSION="8.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
  17. matrix:
  18. - LINT_CHECK="1"
  19. - TESTS="1" ODOO_REPO="odoo/odoo"
  20. - TESTS="1" ODOO_REPO="OCA/OCB" MAKEPOT="1"
  21. virtualenv:
  22. system_site_packages: true
  23. install:
  24. - git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
  25. - export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
  26. - travis_install_nightly
  27. script:
  28. - travis_run_tests
  29. after_success:
  30. - travis_after_tests_success