Skip to content

Commit

Permalink
[MIG] Add metafiles
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
OCA-git-bot committed Sep 27, 2018
0 parents commit 6d43ee9
Show file tree
Hide file tree
Showing 5 changed files with 770 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# 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

# OSX Files
*.DS_Store
31 changes: 31 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
language: python
python:
- '3.5'
sudo: false
cache: pip

addons:
apt:
packages:
- expect-dev
- python-lxml
- python-simplejson
- python-serial
env:
global:
- VERSION="12.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
- TRANSIFEX_USER='[email protected]'
- secure: weh4Fxzz928ACs7CG/0GJBcUpdw7smzEtZpg8VYz2XvENMKzD7kQRz6sO7REme5dEVN12eCb3MALEiZQFlbnhHcAGr+396OMrePUFm9Zi1qX92007/FTDGDkSN/l3UGYAwy7HgzAcmkKiEtKnenB+THzDvvF4+qC/ql0ujkt7Rcd9O17uZesyd5J0vf7HZEJIANRMSCcjdWa9hAm6oyGWrl+up8dyuTyzqNzb+LtrOI9R+s4OUZR+CJLYeJ4BP5A5g4waZ1NEopOi5KTxtqNgn0biWOUaZ4vGeqYqoZ9EJuV6btYyokOvGpiu6s8Ud1UPcvs9+tcLtd39QQjw4EpAWZRXwuopTcggFBUQnMiXuFb0lKQesgyCrkpyaKFoNM92VDo7G/550kST/iomWdXmwn+lITnVZFccUl44OvAt3YOweUfZJ5GAJeWcB9GU516zBnuUtrzW7lz4PdosK07+mkQEnCzVsXBtOrXFWkD2i9X0CzoXt+F+mLD9e+1R5W/KgewWHbYtS9uA6Tm9wL8d4nIA2bV8EYLMdvi/1UbeYyZRC2Kc/rj/+rXTHs85G9mXf1pvFM52jjB+0aQbFLlsZ5aW6Jp1aOI+u4RMTLE3TSD1/TUWY6m0VHAIbervyOnU4Q/HyPbwqzu1132nCZOyg06UOQIjDh4HMV5N0lFZ/s=
matrix:
- LINT_CHECK="1"
- TRANSIFEX="1"
- TESTS="1" ODOO_REPO="OCA/OCB"
- TESTS="1" ODOO_REPO="odoo/odoo"
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
script:
- travis_run_tests
after_success:
- travis_after_tests_success
7 changes: 7 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# OCA Guidelines

Please follow the official guide from the [OCA Guidelines page](https://github.com/OCA/maintainer-tools/blob/master/CONTRIBUTING.md).

## Project Specific Guidelines

This project does not have specific coding guidelines.
Loading

0 comments on commit 6d43ee9

Please sign in to comment.