-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a5ac065
Showing
5 changed files
with
188 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,59 @@ | ||
# 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 | ||
|
||
# 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 | ||
|
||
# OSX Files | ||
*.DS_Store |
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,91 @@ | ||
language: python | ||
sudo: false | ||
cache: | ||
apt: true | ||
directories: | ||
- $HOME/.cache/pip | ||
|
||
python: | ||
- "2.7" | ||
|
||
addons: | ||
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 | ||
- python-lxml # because pip installation is slow | ||
- python-simplejson | ||
- python-serial | ||
- python-yaml | ||
# 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="10.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="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.4" | ||
# 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 | ||
- TRANSIFEX_USER='[email protected]' | ||
# This line contains the encrypted transifex password | ||
# To encrypt transifex password, install travis ruby utils with: | ||
# $ gem install travis --user-install | ||
# and use: | ||
# $ travis encrypt TRANSIFEX_PASSWORD=your-password -r owner/project | ||
# Secure list for current OCA projects is in https://github.com/OCA/maintainer-quality-tools/issues/194 | ||
- secure: PjP88tPSwimBv4tsgn3UcQAD1heK/wcuSaSfhi2xUt/jSrOaTmWzjaW2gH/eKM1ilxPXwlPGyAIShJ2JJdBiA97hQufOeiqxdkWDctnNVVEDx2Tk0BiG3PPYyhXPgUZ+FNOnjZFF3pNWvzXTQaB0Nvz8plqp93Ov/DEyhrCxHDs= | ||
# Use the following lines if you need to manually change the transifex project slug or/and the transifex organization. | ||
# The default project slug is owner-repo_name-version (with dash in the version string). | ||
# The default organization is the owner of the repo. | ||
# The default fill up resources (TM) is True. | ||
# The default team is 23907. https://www.transifex.com/organization/oca/team/23907/ | ||
# - TRANSIFEX_PROJECT_SLUG= | ||
# - TRANSIFEX_ORGANIZATION= | ||
# - TRANSIFEX_FILL_UP_RESOURCES= | ||
# - TRANSIFEX_TEAM= | ||
|
||
matrix: | ||
- LINT_CHECK="1" | ||
- TRANSIFEX="1" | ||
- TESTS="1" ODOO_REPO="odoo/odoo" | ||
- TESTS="1" ODOO_REPO="OCA/OCB" | ||
# 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="odoo/odoo" UNIT_TEST="1" | ||
# - TESTS="1.0" ODOO_REPO="OCA/OCB" UNIT_TEST="1" | ||
|
||
virtualenv: | ||
system_site_packages: true | ||
|
||
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. |
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,16 @@ | ||
[](https://runbot.odoo-community.org/runbot/repo/github-com-oca-project-agile-${REPO_ID}) | ||
[](https://travis-ci.org/OCA/${REPO_NAME}) | ||
|
||
# Project Agile | ||
|
||
Odoo modules for agile project management. | ||
|
||
[//]: # (addons) | ||
This part will be replaced when running the oca-gen-addons-table script from OCA/maintainer-tools. | ||
[//]: # (end addons) | ||
|
||
---- | ||
|
||
OCA, or the [Odoo Community Association](http://odoo-community.org/), is a nonprofit organization whose | ||
mission is to support the collaborative development of Odoo features and | ||
promote its widespread use. |
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,15 @@ | ||
# List the OCA project dependencies, one per line | ||
# Add a repository url and branch if you need a forked version | ||
# | ||
# Examples | ||
# ======== | ||
# | ||
# To depend on the standard version of sale-workflow, use: | ||
# sale-workflow | ||
# | ||
# To explicitely give the URL of a fork, and still use the version specified in | ||
# .travis.yml, use: | ||
# sale-workflow https://github.com/OCA/sale-workflow | ||
# | ||
# To provide both the URL and a branch, use: | ||
# sale-workflow https://github.com/OCA/sale-workflow branchname |