forked from odoo-brazil/odoo-brazil-banking
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request odoo-brazil#12 from kmee/fix/refactory_module_paym…
…ent_mode Fix/refactory module payment mode
- Loading branch information
Showing
64 changed files
with
650 additions
and
349 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,37 @@ | ||
language: python | ||
sudo: false | ||
cache: | ||
apt: true | ||
directories: | ||
- $HOME/.cache/pip | ||
|
||
python: | ||
- "2.7" | ||
|
||
addons: | ||
apt: | ||
# only add the two lines below if you need wkhtmltopdf for your tests | ||
# sources: | ||
# - pov-wkhtmltopdf | ||
# Search your sources alias here: | ||
# https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json | ||
packages: | ||
- poppler-utils # For pdftohtml | ||
- expect-dev # provides unbuffer utility | ||
- python-lxml # because pip installation is slow | ||
- python-simplejson | ||
- python-serial | ||
- python-yaml | ||
# Search your packages here: | ||
# https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise | ||
# - wkhtmltopdf # only add if needed and check the before_install section below | ||
- poppler-utils # For pdftohtml | ||
|
||
# set up an X server to run wkhtmltopdf. | ||
#before_install: | ||
# - "export DISPLAY=:99.0" | ||
# - "sh -e /etc/init.d/xvfb start" | ||
|
||
env: | ||
global: | ||
- VERSION="8.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0" | ||
- TRANSIFEX_USER='[email protected]' | ||
# This line contains the encrypted transifex password | ||
# To encrypt transifex password, install travis ruby utils with: | ||
# $ gem install travis --user-install | ||
# and use: | ||
# $ travis encrypt TRANSIFEX_PASSWORD=your-password -r owner/project | ||
- secure: PjP88tPSwimBv4tsgn3UcQAD1heK/wcuSaSfhi2xUt/jSrOaTmWzjaW2gH/eKM1ilxPXwlPGyAIShJ2JJdBiA97hQufOeiqxdkWDctnNVVEDx2Tk0BiG3PPYyhXPgUZ+FNOnjZFF3pNWvzXTQaB0Nvz8plqp93Ov/DEyhrCxHDs= | ||
# Use the following lines if you need to manually change the transifex project slug or/and the transifex organization. | ||
# The default project slug is owner-repo_name-version (with dash in the version string). | ||
# The default organization is the owner of the repo. | ||
# The default fill up resources (TM) is True. | ||
# The default team is 23907. https://www.transifex.com/organization/oca/team/23907/ | ||
# - TRANSIFEX_PROJECT_SLUG= | ||
# - TRANSIFEX_ORGANIZATION= | ||
# - TRANSIFEX_FILL_UP_RESOURCES= | ||
# - TRANSIFEX_TEAM= | ||
|
||
matrix: | ||
- LINT_CHECK="1" | ||
- TRANSIFEX="1" | ||
- TESTS="1" ODOO_REPO="odoo/odoo" | ||
- TESTS="1" ODOO_REPO="OCA/OCB" | ||
# 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="odoo/odoo" UNIT_TEST="1" | ||
# - TESTS="1.0" ODOO_REPO="OCA/OCB" UNIT_TEST="1" | ||
- VERSION="8.0" LINT_CHECK="1" | ||
- VERSION="8.0" ODOO_REPO="odoo/odoo" LINT_CHECK="0" | ||
- VERSION="8.0" ODOO_REPO="OCA/OCB" LINT_CHECK="0" | ||
|
||
virtualenv: | ||
system_site_packages: true | ||
|
||
install: | ||
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools | ||
- git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools | ||
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH} | ||
- pip install pillow==3.4.2 | ||
- pip install -U pip wheel | ||
- pip install unidecode | ||
- pip install python-dateutil | ||
- pip install pytz | ||
- pip install pyparsing | ||
- pip install git+https://github.com/aricaldeira/pybrasil.git | ||
- pip install pyboleto | ||
- pip install https://github.com/odoo-brazil/cnab240/archive/develop.zip | ||
- pip install fixedwidth | ||
- pip install https://github.com/kmee/cnab240/archive/master.zip | ||
- travis_install_nightly | ||
|
||
before_script: | ||
|
@@ -80,4 +41,4 @@ script: | |
- travis_run_tests | ||
|
||
after_success: | ||
- travis_after_tests_success | ||
coveralls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
from . import account_payment | ||
from . import account_move_line | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# -*- coding: utf-8 -*- | ||
from . import payment_order_create | ||
from . import payment_order_create |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
l10n_br_account_banking_payment_bradesco_tributos/.travis.yml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.