Skip to content

Commit

Permalink
Merge d953a7f into 214361f
Browse files Browse the repository at this point in the history
  • Loading branch information
hbrunn committed Jul 14, 2014
2 parents 214361f + d953a7f commit e8f912f
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .gitignore
@@ -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/
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
19 changes: 19 additions & 0 deletions .travis.yml
@@ -0,0 +1,19 @@
language: python
python:
- "2.7"

virtualenv:
system_site_packages: true

install:
- git clone https://github.com/OCA/maintainer-quality-tools.git $HOME/maintainer-quality-tools
- export PATH=$HOME/maintainer-quality-tools/travis:$PATH
- travis_install_nightly 6.1
- pip install coveralls flake8

script:
- travis_run_flake8
- travis_run_tests 6.1

after_success:
coveralls
5 changes: 5 additions & 0 deletions README.md
@@ -0,0 +1,5 @@
[![Build Status](https://travis-ci.org/OCA/crm.svg?branch=6.1)](https://travis-ci.org/OCA/crm)
[![Coverage Status](https://coveralls.io/repos/OCA/crm/badge.png?branch=6.1)](https://coveralls.io/r/OCA/crm?branch=6.1)

CRM addons for Odoo
===================

0 comments on commit e8f912f

Please sign in to comment.