OCA Bot
5 years ago
commit
98213cd812
4 changed files with 144 additions and 0 deletions
-
59.gitignore
-
64.travis.yml
-
7CONTRIBUTING.md
-
14README.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,64 @@ |
|||
language: python |
|||
sudo: false |
|||
cache: pip |
|||
|
|||
python: |
|||
- "3.5" |
|||
|
|||
addons: |
|||
postgresql: "9.6" |
|||
apt: |
|||
# sources: |
|||
# Search your sources alias here: |
|||
# https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json |
|||
packages: |
|||
- expect-dev # provides unbuffer utility |
|||
# Search your packages here: |
|||
# https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise |
|||
# For wkhtmltopdf, see the env section below |
|||
|
|||
# Sometimes complicated website repos need Compass & SaSS: |
|||
#before_install: |
|||
# - rvm install ruby --latest |
|||
# - gem install bootstrap-sass |
|||
# - gem install compass --pre |
|||
|
|||
env: |
|||
global: |
|||
- VERSION="13.0" TESTS="0" LINT_CHECK="0" MAKEPOT="0" |
|||
# Set this variable to some version existing as linux-generic build on |
|||
# https://github.com/wkhtmltopdf/wkhtmltopdf/releases |
|||
# if you need to install wkhtmltopdf |
|||
# - WKHTMLTOPDF_VERSION="0.12.4" |
|||
# Set the above to install a `wkhtmltopdf` version that is not the one provided |
|||
# by the `pov-wkhtmltopdf` repo. |
|||
- PHANTOMJS_VERSION="latest" |
|||
# The above line controls the PhantomJS version that is used for JS testing. |
|||
# It is not necessary to include this value unless you are altering the default. |
|||
# Use `OS` to skip the PhantomJS upgrade & use the system version instead. |
|||
- WEBSITE_REPO="1" |
|||
# Use the above line to install dependencies that are required for website repos: |
|||
# * SASS & Bootstrap-SASS |
|||
# * Compass |
|||
|
|||
matrix: |
|||
- LINT_CHECK="1" |
|||
- TESTS="1" ODOO_REPO="OCA/OCB" |
|||
- TESTS="1" ODOO_REPO="odoo/odoo" MAKEPOT="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="OCA/OCB" UNIT_TEST="1" |
|||
# - TESTS="1.0" ODOO_REPO="odoo/odoo" UNIT_TEST="1" |
|||
|
|||
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,14 @@ |
|||
[![Runbot Status](https://runbot.odoo-community.org/runbot/badge/flat/263/13.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=13.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