Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Weblate set up #287

Merged
merged 1 commit into from
Sep 3, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
44 changes: 2 additions & 42 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,59 +10,19 @@ python:

addons:
apt:
# only add the two lines below if you need wkhtmltopdf for your tests
# sources:
# - pov-wkhtmltopdf
# Search your sources alias here:
# https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json
packages:
- expect-dev # provides unbuffer utility
- python-lxml # because pip installation is slow
- python-simplejson
- python-serial
- python-yaml
# Search your packages here:
# https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
# - wkhtmltopdf # only add if needed and check the before_install section below

# set up an X server to run wkhtmltopdf.
#before_install:
# - "export DISPLAY=:99.0"
# - "sh -e /etc/init.d/xvfb start"

env:
global:
- VERSION="8.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
- TRANSIFEX_USER='transbot@odoo-community.org'
# This line contains the encrypted transifex password
# To encrypt transifex password, install travis ruby utils with:
# $ gem install travis --user-install
# and use:
# $ travis encrypt TRANSIFEX_PASSWORD=your-password -r owner/project
# Secure list for current OCA projects is in https://github.com/OCA/maintainer-quality-tools/issues/194
- secure: SOqfTrrC52vWbjccaSMGEwNlk6wJTQisMzGTwludqbVJ4GdRMZKuqljAzBfmrXqfrM7PVu4ouFeepGgnhhZGVvLTLov2TnSmPhggx369YzAdkxvVAo0Ev6HLi8p8+MwdJbaZRDUPcZ2+Wqn+UuYcZGqp8GU7LHmW0XIQB3n/kq8T69xpBihNEmkMNJvw00fSt71ew1rOjG/JejgOJekVlABp9xf6e+e7pXDPJSAatpaU51+UQkVZvDEPQFoLubyk1HlHOX1MbWshCAmzLCUQuG3FgCOHFnA+GMHRISqeLxvNZ2slk4V5c6BfDIzkOkwtOoYzTzvsuvqXbfs4ZpLNBbOTFN7XzyStkjkcLSPg3Y+zLL+k3kXIrcTpn7lsyP0xpSQAv11qq2nbAstRCW3hIkudoTrUvAYc9FPlFPGomcGkP0lx582ppL4rX/fmxxl3vn/7A+bY4tZ8MwtssMfATQoszUw8sx2/S2mp7/RpiZPdQfve5z95bMt0/BR1UBkzpr5q2zzVqVFV6lQvbmfAK4XZTCONRUX/Ud/TCapC/Cx0xnCe1GF28Ja65uFmAyRwtCcP4kh+wIxYZSB8L2zfVAVNDqnbFy0BjbS3Id8tmwcBDNZUeOM6+amHhs8XP9f/18HR/gFNl0uqxfbfklkOiImYzRp+jTD7MguKrrF26h8=
# Use the following lines if you need to manually change the transifex project slug or/and the transifex organization.
# The default project slug is owner-repo_name-version (with dash in the version string).
# The default organization is the owner of the repo.
# The default fill up resources (TM) is True.
# The default team is 23907. https://www.transifex.com/organization/oca/team/23907/
# - TRANSIFEX_PROJECT_SLUG=
# - TRANSIFEX_ORGANIZATION=
# - TRANSIFEX_FILL_UP_RESOURCES=
# - TRANSIFEX_TEAM=

- VERSION="8.0" TESTS="0" LINT_CHECK="0"
matrix:
- LINT_CHECK="1"
- TESTS="1" ODOO_REPO="odoo/odoo"
- TESTS="1" ODOO_REPO="odoo/odoo" MAKEPOT="1"
- TESTS="1" ODOO_REPO="OCA/OCB"
- TRANSIFEX="1"
# either use the two lines above or the two below. Don't change the default if
# it's not necessary (it is only necessary if modules in your repository can't
# be installed in the same database. And you get a huge speed penalty in your
# tests)
# - TESTS="1.0" ODOO_REPO="odoo/odoo" UNIT_TEST="1"
# - TESTS="1.0" ODOO_REPO="OCA/OCB" UNIT_TEST="1"

virtualenv:
system_site_packages: true

Expand Down