Pedro M. Baeza
7 years ago
commit
7f84fa2a98
4 changed files with 116 additions and 0 deletions
-
59.gitignore
-
38.travis.yml
-
7CONTRIBUTING.md
-
12README.md
@ -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 |
@ -0,0 +1,38 @@ |
|||
language: python |
|||
sudo: false |
|||
cache: pip |
|||
|
|||
python: |
|||
- "2.7" |
|||
|
|||
addons: |
|||
apt: |
|||
packages: |
|||
- expect-dev # provides unbuffer utility |
|||
- python-lxml # because pip installation is slow |
|||
- python-simplejson |
|||
- python-serial |
|||
- python-yaml |
|||
|
|||
env: |
|||
global: |
|||
- VERSION="8.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0" |
|||
|
|||
matrix: |
|||
- LINT_CHECK="1" |
|||
- TESTS="1" ODOO_REPO="odoo/odoo" |
|||
- TESTS="1" ODOO_REPO="OCA/OCB" MAKEPOT="1" |
|||
|
|||
virtualenv: |
|||
system_site_packages: true |
|||
|
|||
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 |
@ -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. |
@ -0,0 +1,12 @@ |
|||
[![Runbot Status](https://runbot.odoo-community.org/runbot/badge/flat/263/8.0.svg)](https://runbot.odoo-community.org/runbot/repo/github-com-oca-data-protection-263) |
|||
[![Build Status](https://travis-ci.org/OCA/data-protection.svg?branch=8.0)](https://travis-ci.org/OCA/data-protection) |
|||
|
|||
# Data Protection |
|||
|
|||
Odoo modules for data protection (like GDPR). |
|||
|
|||
---- |
|||
|
|||
OCA, or the [Odoo Community Association](http://odoo-community.org/), is a nonprofit organization whose |
|||
mission is to support the collaborative development of Odoo features and |
|||
promote its widespread use. |
Write
Preview
Loading…
Cancel
Save
Reference in new issue