Skip to content

Commit f81ebf9

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

File tree

4 files changed

+776
-0
lines changed

4 files changed

+776
-0
lines changed

.gitignore

Lines changed: 56 additions & 0 deletions
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

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
language: python
2+
sudo: false
3+
cache: pip
4+
5+
python:
6+
- "3.5"
7+
8+
addons:
9+
apt:
10+
packages:
11+
- expect-dev # provides unbuffer utility
12+
- python-lxml # because pip installation is slow
13+
- python-simplejson
14+
- python-serial
15+
- python-yaml
16+
17+
env:
18+
global:
19+
- VERSION="11.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0" WKHTMLTOPDF_VERSION="0.12.4"
20+
- TRANSIFEX_USER='transbot@odoo-community.org'
21+
- secure: mTXYvzW7/+xP465dNW0p9H+Q8jVgQXmqm8zo+ntZC6ESkTudj6xUkrjJcfzp9LGomxoG6N+6TezjFuhfGKCAc4S2manxj9YQoHvZMHJvt73VsMZU2QLfE+IMAdFS/AeBpYLNE8VvdKIGhiFwvHyRqaF0vAGwmcsOdS2NQb/hoiY=
22+
23+
matrix:
24+
- LINT_CHECK="1"
25+
- TRANSIFEX="1"
26+
- TESTS="1" ODOO_REPO="OCA/OCB" LINT_CHECK="0"
27+
- TESTS="1" ODOO_REPO="odoo/odoo" LINT_CHECK="0"
28+
29+
30+
install:
31+
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
32+
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
33+
- travis_install_nightly
34+
35+
script:
36+
- travis_run_tests
37+
38+
after_success:
39+
- travis_after_tests_success

0 commit comments

Comments
 (0)