Skip to content

Commit

Permalink
[MIG] Add metafiles
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
pedrobaeza authored and yvaucher committed Dec 1, 2017
1 parent 5925766 commit 8d5f5e1
Show file tree
Hide file tree
Showing 4 changed files with 843 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo

# Pycharm
.idea

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# Rope
.ropeproject

# Sphinx documentation
docs/_build/

# Backup files
*~
*.swp
42 changes: 42 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
language: python

python:
- "3.5"

sudo: false
cache: pip

addons:
apt:
packages:
- expect-dev # provides unbuffer utility
- python-lxml # because pip installation is slow

env:
global:
- VERSION="11.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
- TRANSIFEX_USER='[email protected]'
- secure: "AK5H2gTz//UqzpXRfXsFZOl7CYYGiHlP7nkQhUXCkdfjqVjK5FCtKZME9w3/C4qrx9nT7hwdfeKZ+slvUqvXbibJT0CCBHFUmcYsbAX3/o3j3sYccrsXWCUq17oPtmP2lMI4BC3eBgk1sfFQ+znfEF+DVyEoBuc0X2eg68U5/Ps="

matrix:
- LINT_CHECK="1"
- TRANSIFEX="1"
- TESTS="1" ODOO_REPO="OCA/OCB" EXCLUDE=l10n_ch_dta
- TESTS="1" ODOO_REPO="odoo/odoo" EXCLUDE=l10n_ch_dta
# - TESTS="1" ODOO_REPO="OCA/OCB" INCLUDE=l10n_ch_dta
# - TESTS="1" ODOO_REPO="odoo/odoo" INCLUDE=l10n_ch_dta


install:
- pip install -q unidecode
- pip install unicodecsv
- pip install xlrd # Excel support
- 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

script:
- travis_run_tests

after_success:
- travis_after_tests_success
Loading

0 comments on commit 8d5f5e1

Please sign in to comment.