-
-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[skip ci]
- Loading branch information
0 parents
commit 005a125
Showing
5 changed files
with
844 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# Project specific | ||
oca.cfg | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
env/ | ||
bin/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
eggs/ | ||
lib/ | ||
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 | ||
*.pot | ||
|
||
# Pycharm | ||
.idea | ||
|
||
# Eclipse | ||
.settings | ||
|
||
# Visual Studio cache/options directory | ||
.vs/ | ||
.vscode | ||
|
||
# OSX Files | ||
.DS_Store | ||
|
||
# Django stuff: | ||
*.log | ||
|
||
# Mr Developer | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
|
||
# Rope | ||
.ropeproject | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# Backup files | ||
*~ | ||
*.swp | ||
|
||
# OCA rules | ||
!static/lib/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
language: python | ||
sudo: false | ||
cache: pip | ||
|
||
python: | ||
# For branches <= 10.0, put `- "2.7.13"` | ||
- "3.5" | ||
|
||
addons: | ||
# By default postgresql-9.1 is installed but there is issue related: | ||
# https://github.com/OCA/maintainer-quality-tools/issues/432#issuecomment-281580935 | ||
# Better use higher PostgreSQL version | ||
postgresql: "9.6" | ||
apt: | ||
# sources: | ||
# Search your sources alias here: | ||
# https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json | ||
packages: | ||
- expect-dev # provides unbuffer utility | ||
# Search your packages here: | ||
# https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise | ||
# For wkhtmltopdf, see the env section below | ||
|
||
# Sometimes complicated website repos need Compass & SaSS: | ||
#before_install: | ||
# - rvm install ruby --latest | ||
# - gem install bootstrap-sass | ||
# - gem install compass --pre | ||
|
||
env: | ||
global: | ||
- VERSION="13.0" TESTS="0" LINT_CHECK="0" MAKEPOT="0" | ||
# Set this variable to some version existing as linux-generic build on | ||
# https://github.com/wkhtmltopdf/wkhtmltopdf/releases | ||
# if you need to install wkhtmltopdf | ||
# - WKHTMLTOPDF_VERSION="0.12.5" | ||
# Set the above to install a `wkhtmltopdf` version that is not the one provided | ||
# by the `pov-wkhtmltopdf` repo. | ||
- PHANTOMJS_VERSION="latest" | ||
# The above line controls the PhantomJS version that is used for JS testing. | ||
# It is not necessary to include this value unless you are altering the default. | ||
# Use `OS` to skip the PhantomJS upgrade & use the system version instead. | ||
- WEBSITE_REPO="1" | ||
# Use the above line to install dependencies that are required for website repos: | ||
# * SASS & Bootstrap-SASS | ||
# * Compass | ||
|
||
matrix: | ||
- LINT_CHECK="1" | ||
# use this to install a standalone database to export .pot files | ||
# - MAKEPOT="1" | ||
# add MAKEPOT="1" to a TEST line to export .pot files from | ||
# the test database after test success | ||
- TESTS="1" ODOO_REPO="OCA/OCB" | ||
- TESTS="1" ODOO_REPO="odoo/odoo" MAKEPOT="1" | ||
# either use the two lines above or the two below. Don't change the default if | ||
# it's not necessary (it is only necessary if modules in your repository can't | ||
# be installed in the same database. And you get a huge speed penalty in your | ||
# tests) | ||
# - TESTS="1.0" ODOO_REPO="OCA/OCB" UNIT_TEST="1" | ||
# - TESTS="1.0" ODOO_REPO="odoo/odoo" UNIT_TEST="1" | ||
|
||
install: | ||
- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# OCA Guidelines | ||
|
||
Please follow the official guide from the [OCA Guidelines page](https://github.com/OCA/maintainer-tools/blob/master/CONTRIBUTING.md). | ||
|
||
## Project Specific Guidelines | ||
|
||
This project does not have specific coding guidelines. |
Oops, something went wrong.