Skip to content

Commit e74e858

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

File tree

4 files changed

+788
-0
lines changed

4 files changed

+788
-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+
postgresql: "9.6"
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="13.0" TESTS="0" LINT_CHECK="0" MAKEPOT="0"
18+
19+
matrix:
20+
- LINT_CHECK="1"
21+
- TESTS="1" ODOO_REPO="OCA/OCB"
22+
- TESTS="1" ODOO_REPO="odoo/odoo" MAKEPOT="1"
23+
24+
25+
install:
26+
- pip install -q unidecode
27+
- pip install unicodecsv
28+
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
29+
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
30+
- travis_install_nightly
31+
# Requirements to test server_environment modules
32+
- printf '[options]\n\nrunning_env = dev\n' > ${HOME}/.openerp_serverrc
33+
- ln -s ${TRAVIS_BUILD_DIR}/server_environment_files_sample ${TRAVIS_BUILD_DIR}/server_environment_files
34+
35+
script:
36+
- travis_run_tests
37+
38+
after_success:
39+
- travis_after_tests_success

0 commit comments

Comments
 (0)