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 committed Oct 3, 2017
0 parents commit 63ca8cf
Show file tree
Hide file tree
Showing 4 changed files with 768 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# 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
*.eggs

# 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
35 changes: 35 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
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: "XoIYWXq+aT6EiA2DWYjLyqRnYafnvqoXvs1mHzIRi3y4d/YARm1jwouReyDzn8Wd9GLdedQ7rffVZg0sXMiErEyRC+4e7ax5bd3+YFvHALZTdC4PoprJKQDiLMc5hcdlXRpS8hKTx32Jr/DmJdhX0jjaJ05tXV3ibTwdzP5VA9k="
matrix:
- LINT_CHECK="1"
- TRANSIFEX="1"
- TESTS="1" ODOO_REPO="OCA/OCB"
- TESTS="1" ODOO_REPO="odoo/odoo"


install:
- git clone 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 63ca8cf

Please sign in to comment.