Skip to content

Commit c542c98

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

File tree

4 files changed

+775
-0
lines changed

4 files changed

+775
-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

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
language: python
2+
sudo: false
3+
cache:
4+
apt: true
5+
directories:
6+
- $HOME/.cache/pip
7+
8+
python:
9+
- "3.5"
10+
11+
addons:
12+
apt:
13+
sources:
14+
- pov-wkhtmltopdf
15+
packages:
16+
- expect-dev # provides unbuffer utility
17+
- python-lxml # because pip installation is slow
18+
- python-simplejson
19+
- python-serial
20+
- python-yaml
21+
- wkhtmltopdf # only add if needed and check the before_install section below
22+
23+
before_install:
24+
- "export DISPLAY=:912.0"
25+
- "sh -e /etc/init.d/xvfb start"
26+
27+
env:
28+
global:
29+
- VERSION="12.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
30+
- TRANSIFEX_USER='transbot@odoo-community.org'
31+
- secure: SQSGiBzLRPP4fG4mbrVkakWkbEx+qCJF9ehcUmdb+Lvc7pvxGuJHBR3lbvXD6C6xwSn4V5aqmn9GN62fI3J96lxHUluvTrVrrluLM+utYyduVx1y+ySEl6o5Bhn5Mygu2H19I93kk7eJJ7akM1568buyiaZyX+T3AxqZmh02G5Q=
32+
matrix:
33+
- LINT_CHECK="1"
34+
- TRANSIFEX="1"
35+
- TESTS="1" ODOO_REPO="OCA/OCB"
36+
- TESTS="1" ODOO_REPO="odoo/odoo"
37+
38+
39+
install:
40+
- git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
41+
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
42+
- travis_install_nightly
43+
- pip install PyPDF2==1.18
44+
45+
script:
46+
- travis_run_tests
47+
48+
after_success:
49+
- travis_after_tests_success

0 commit comments

Comments
 (0)