Skip to content

Commit 364a03c

Browse files
committed
[MIG] Add metafiles
[skip ci]
0 parents  commit 364a03c

File tree

4 files changed

+780
-0
lines changed

4 files changed

+780
-0
lines changed

.gitignore

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
5+
# C extensions
6+
*.so
7+
8+
# Distribution / packaging
9+
.Python
10+
env/
11+
bin/
12+
build/
13+
develop-eggs/
14+
dist/
15+
eggs/
16+
lib/
17+
lib64/
18+
parts/
19+
sdist/
20+
var/
21+
*.egg-info/
22+
.installed.cfg
23+
*.egg
24+
25+
# Installer logs
26+
pip-log.txt
27+
pip-delete-this-directory.txt
28+
29+
# Unit test / coverage reports
30+
htmlcov/
31+
.tox/
32+
.coverage
33+
.cache
34+
nosetests.xml
35+
coverage.xml
36+
37+
# Translations
38+
*.mo
39+
40+
# Pycharm
41+
.idea
42+
43+
# Mr Developer
44+
.mr.developer.cfg
45+
.project
46+
.pydevproject
47+
48+
# Rope
49+
.ropeproject
50+
51+
# Sphinx documentation
52+
docs/_build/
53+
54+
# Backup files
55+
*~
56+
*.swp

.travis.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
language: python
2+
3+
python:
4+
- "3.5"
5+
6+
sudo: false
7+
cache: pip
8+
9+
addons:
10+
apt:
11+
source:
12+
- pov-wkhtmltopdf
13+
packages:
14+
- expect-dev # provides unbuffer utility
15+
- python-lxml # because pip installation is slow
16+
- wkhtmltopdf
17+
18+
env:
19+
global:
20+
- VERSION="11.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
21+
- TRANSIFEX_USER='[email protected]'
22+
- secure: "WspsOy3m3Arreqs+f8QAnKOCPbXfpO7TeUJEfJSMehMh8I+bR1KFZM0CUfKxNOT9mrbt94J9VzF3knC2p4P/lUWr24USJ27FgOScnTz/PQTjZfjdXDefGdhCCx3QgIzI/mj751BYp2FMBYXEvjaBSycerWJ+AP+OKVEdf44Lgp0="
23+
24+
matrix:
25+
- LINT_CHECK="1"
26+
- TRANSIFEX="1"
27+
- TESTS="1" ODOO_REPO="OCA/OCB"
28+
- TESTS="1" ODOO_REPO="odoo/odoo"
29+
30+
31+
install:
32+
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
33+
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
34+
- travis_install_nightly
35+
- pip install PyPDF2==1.18
36+
- pip install unidecode
37+
- pip install pycountry
38+
- pip install suds-jurko==0.6
39+
40+
script:
41+
- travis_run_tests
42+
43+
after_success:
44+
- travis_after_tests_success

0 commit comments

Comments
 (0)