forked from Techsystech/web
commit
28ba5105aa
|
@ -0,0 +1,56 @@
|
||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
env/
|
||||||
|
bin/
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
eggs/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
*.eggs
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.coverage
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
|
||||||
|
# Pycharm
|
||||||
|
.idea
|
||||||
|
|
||||||
|
# Mr Developer
|
||||||
|
.mr.developer.cfg
|
||||||
|
.project
|
||||||
|
.pydevproject
|
||||||
|
|
||||||
|
# Rope
|
||||||
|
.ropeproject
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
docs/_build/
|
||||||
|
|
||||||
|
# Backup files
|
||||||
|
*~
|
||||||
|
*.swp
|
|
@ -0,0 +1,36 @@
|
||||||
|
language: python
|
||||||
|
|
||||||
|
python:
|
||||||
|
- "3.5"
|
||||||
|
|
||||||
|
sudo: false
|
||||||
|
cache: pip
|
||||||
|
|
||||||
|
addons:
|
||||||
|
postgresql: "9.6"
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- expect-dev # provides unbuffer utility
|
||||||
|
- python-lxml # because pip installation is slow
|
||||||
|
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
- VERSION="13.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
- LINT_CHECK="1"
|
||||||
|
- TESTS="1" ODOO_REPO="OCA/OCB"
|
||||||
|
- TESTS="1" ODOO_REPO="odoo/odoo" MAKEPOT="1"
|
||||||
|
|
||||||
|
|
||||||
|
install:
|
||||||
|
- pip install anybox.testing.openerp
|
||||||
|
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
|
||||||
|
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
|
||||||
|
- travis_install_nightly
|
||||||
|
|
||||||
|
script:
|
||||||
|
- travis_run_tests
|
||||||
|
|
||||||
|
after_success:
|
||||||
|
- travis_after_tests_success
|
|
@ -0,0 +1,15 @@
|
||||||
|
[](https://runbot.odoo-community.org/runbot/repo/github-com-oca-web-162)
|
||||||
|
[](https://travis-ci.org/OCA/web)
|
||||||
|
[](https://coveralls.io/r/OCA/web?branch=13.0)
|
||||||
|
|
||||||
|
Web addons for Odoo
|
||||||
|
===================
|
||||||
|
|
||||||
|
This project aims to deal with modules related to the webclient of Odoo. You'll find modules that:
|
||||||
|
|
||||||
|
- Add facilities to the UI
|
||||||
|
- Add widgets
|
||||||
|
- Ease the import/export features
|
||||||
|
- Generally add clientside functionality
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue