forked from OCA/edi
-
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.
[skip ci]
- Loading branch information
0 parents
commit 45eb9c1
Showing
5 changed files
with
809 additions
and
0 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 |
---|---|---|
@@ -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 |
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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
language: python | ||
sudo: true | ||
cache: | ||
apt: true | ||
directories: | ||
- $HOME/.cache/pip | ||
|
||
python: | ||
- "3.5" | ||
|
||
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: | ||
- 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 | ||
|
||
# set up an X server to run wkhtmltopdf. | ||
before_install: | ||
- "export DISPLAY=:99.0" | ||
- "sh -e /etc/init.d/xvfb start" | ||
|
||
env: | ||
global: | ||
- VERSION="12.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0" | ||
- TRANSIFEX_USER='[email protected]' | ||
- secure: "J06UsyF7JFAMRw83lzKl5GZZforXvYyl2Dav0qeJ/g6btlaow6MUBP0maIB/q1o63nqJl4o3ljZFdSsVTQymNBXBIutNRFr+ZZxlyToe6C//p0G59mfLznmJHAgiE+TlH0BhdAplhfzd7zGl1ff9tP28BOq3R4j1FPhhu9s+2p0zuktgUIikrggdBY5OgCEqqa5xvzZT3iXrvE7D6lGO6ObFoi7LEo8pwyQEZ9fElu8w+bTPPuMGEbzk7t0HUQuiz82SyFW/ul/aqVoxzFeF4ksxlpFqtSMIulPWtmc3OY2jj3lfzbwkVJBeGnNHHUzHyCL7DMF9xjBbFtzWe/5wGaE7X6XK8rjlNjI0E1Dp7i2kzYqEQKyPI6YoWq7vc2uiCvYasl9ECWoaC2SOhee70QcrJEgTAZa0nNoeHHxoDk79I3LQuwCyNmmo9VO4txoizmlzloNje4uL9isdXUwY4VpCDyHGTsnG324cNk4YQizBW87+pOwP76uJCum+tBMSKJIm8vUtZysJtlxORlMMFXOc8MbFim1U/JuQpmaDdU5j4DD3zSPd9BVgwGCI+Tw5N2s+FEo0AnJhmK7yubNJHM5jm6IydgykpvY9b2aOywz+MRxxR5LE01UiFNPBQTDHIMUqyrwCTD6/7Zm+9XHlktFyikxyrS1yItrv1qh9wxQ=" | ||
|
||
matrix: | ||
- LINT_CHECK="1" | ||
- TRANSIFEX="1" | ||
- TESTS="1" ODOO_REPO="OCA/OCB" OPTIONS="--test-report-directory=/tmp" | ||
- TESTS="1" ODOO_REPO="odoo/odoo" OPTIONS="--test-report-directory=/tmp" | ||
|
||
|
||
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 | ||
- pip install invoice2data | ||
# Invoice2data new requires a recent version of pdftotext from https://poppler.freedesktop.org/releases.html | ||
# and the version below doesn't work any more | ||
#- wget -P /tmp http://public.akretion.com/pdftotext-3.04 | ||
#- sudo mv /tmp/pdftotext-3.04 /usr/local/bin/pdftotext | ||
#- sudo chmod 755 /usr/local/bin/pdftotext | ||
- pip install PyPDF2 # needed for account_invoice*zugferd | ||
- pip install phonenumbers | ||
|
||
script: | ||
- travis_run_tests | ||
|
||
after_success: | ||
- travis_after_tests_success |
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 |
---|---|---|
@@ -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. |
Oops, something went wrong.