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.

41 lines
1.4 KiB

  1. language: python
  2. sudo: false
  3. cache: pip
  4. python:
  5. - "3.5"
  6. addons:
  7. postgresql: "9.3" # minimal postgresql version for the base_import_security_group module
  8. # more info: https://github.com/OCA/maintainer-quality-tools/issues/432
  9. apt:
  10. packages:
  11. - expect-dev # provides unbuffer utility
  12. - python-lxml # because pip installation is slow
  13. env:
  14. global:
  15. - VERSION="11.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
  16. matrix:
  17. - LINT_CHECK="1"
  18. - TESTS="1" ODOO_REPO="OCA/OCB"
  19. - TESTS="1" ODOO_REPO="odoo/odoo"
  20. before_install:
  21. - "export PATH=$PWD/travis_phantomjs/phantomjs-2.1.1-linux-x86_64/bin:$PATH"
  22. - "if [ $(phantomjs --version) != '2.1.1' ]; then rm -rf $PWD/travis_phantomjs; mkdir -p $PWD/travis_phantomjs; fi"
  23. - "if [ $(phantomjs --version) != '2.1.1' ]; then wget https://assets.membergetmember.co/software/phantomjs-2.1.1-linux-x86_64.tar.bz2 -O $PWD/travis_phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2; fi"
  24. - "if [ $(phantomjs --version) != '2.1.1' ]; then tar -xvf $PWD/travis_phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C $PWD/travis_phantomjs; fi"
  25. - "phantomjs --version"
  26. install:
  27. - git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
  28. - export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
  29. - travis_install_nightly
  30. script:
  31. - travis_run_tests
  32. after_success:
  33. - travis_after_tests_success