Files
session_redis_public/.travis.yml
T
Guewen Baconnier 3b178e0409 Fix build after changes in server_environment
Now the default env is "test", and we don't need the directory
at all.
See https://github.com/OCA/server-env/pull/44
2020-05-11 07:50:17 +02:00

37 lines
738 B
YAML

language: python
sudo: false
cache: pip
python:
- "3.5"
addons:
apt:
packages:
- expect-dev # provides unbuffer utility
- python-lxml # because pip installation is slow
- python-simplejson
- python-serial
env:
matrix:
- LINT_CHECK="1"
- TESTS="1" ODOO_REPO="odoo/odoo"
- TESTS="1" ODOO_REPO="OCA/OCB"
global:
- VERSION="11.0" LINT_CHECK="0" TESTS="0"
- BOTO_CONFIG="/dev/null"
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}
- travis_install_nightly
services:
- postgresql
script:
- travis_run_tests
after_success:
- travis_after_test_success