From 89e5783b563255c206da3b063f1cf76ee729619f Mon Sep 17 00:00:00 2001 From: Stefan Rijnhart Date: Mon, 7 Jul 2014 14:51:35 +0200 Subject: [PATCH] [ADD] Readme, gitignore and CI magic --- .coveragerc | 19 ++++++++++++++++++ .gitignore | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++ .travis.yml | 23 ++++++++++++++++++++++ README.md | 27 ++++++++++++++++++++++++++ 4 files changed, 125 insertions(+) create mode 100644 .coveragerc create mode 100644 .gitignore create mode 100644 .travis.yml create mode 100644 README.md diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 000000000..a06f8bfec --- /dev/null +++ b/.coveragerc @@ -0,0 +1,19 @@ +# Config file .coveragerc + +[report] +omit = + /usr/* + */bin/* + */lib/* + */odoo/* + */openerp/* + */tests/* + *__init__.py + +# Regexes for lines to exclude from consideration +exclude_lines = + # Have to re-enable the standard pragma + pragma: no cover + + # Don't complain about null context checking + if context is None: diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..890ff0109 --- /dev/null +++ b/.gitignore @@ -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 diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..e1b9dc38a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +language: python +python: + - "2.7" + +virtualenv: + system_site_packages: true + +install: + - git clone https://github.com/OCA/maintainer-quality-tools.git $HOME/maintainer-quality-tools + - export PATH=$HOME/maintainer-quality-tools/travis:$PATH + - $HOME/maintainer-quality-tools/travis/travis_install_nightly 7.0 + - pip install coveralls flake8 unidecode + - git clone https://github.com/OCA/banking.git -b 7.0 $HOME/banking + +services: + - postgresql + +script: + - travis_run_flake8 + - travis_run_tests 7.0 $HOME/banking + +after_success: + coveralls diff --git a/README.md b/README.md new file mode 100644 index 000000000..31c2e2a46 --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +[![Build Status](https://travis-ci.org/OCA/banking.svg?branch=7.0)](https://travis-ci.org/OCA/banking) +[![Coverage Status](https://img.shields.io/coveralls/OCA/banking.svg)](https://coveralls.io/r/OCA/banking?branch=7.0) + +Banking addons for Odoo +======================= + +This project focuses on in- and export of banking communication. + +- account_banking_payment_export - Basic export functionality of payment orders + + - account_banking_sepa_credit_transfer - Export of payment orders in SEPA format + + - account_direct_debit - Debit order infrastructure analogous to Odoo native payment orders + + - account_banking_sepa_direct_debit - Export of debit orders in SEPA format + +- account_banking - Infrastructure for importing bank statements in various formats and custom (manual) +reconciliation functionality. While advanced, this functionalit will be deprecated in Odoo 8.0 in favour +of (an extension of) the new, native reconcilation functionality. + + - account_banking_camt - Import of bank statements in the SEPA CAMT.053 format + +A number of other modules are available for legacy format bank statement files. + +Contact us +---------- +Join the team on https://launchpad.net/~banking-addons-drivers so that you can subscribe to its mailing list