Skip to content

Commit d6b57ab

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

File tree

4 files changed

+756
-0
lines changed

4 files changed

+756
-0
lines changed

.gitignore

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

.travis.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
language: python
2+
3+
python:
4+
- "3.5"
5+
6+
sudo: false
7+
cache: pip
8+
9+
addons:
10+
apt:
11+
packages:
12+
- expect-dev # provides unbuffer utility
13+
- python-lxml # because pip installation is slow
14+
15+
env:
16+
global:
17+
- VERSION="11.0" TESTS="0" LINT_CHECK="0"
18+
matrix:
19+
- LINT_CHECK="1"
20+
- TESTS="1" ODOO_REPO="OCA/OCB"
21+
- TESTS="1" ODOO_REPO="odoo/odoo"
22+
23+
24+
install:
25+
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
26+
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
27+
- travis_install_nightly
28+
- git clone https://github.com/OCA/partner-contact $HOME/partner-contact -b ${VERSION}
29+
- git clone https://github.com/OCA/hr ${HOME}/hr -b ${VERSION}
30+
31+
script:
32+
- travis_run_tests
33+
34+
after_success:
35+
- travis_after_tests_success

0 commit comments

Comments
 (0)