Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ebrehault committed Jul 9, 2015
0 parents commit 5717a46
Show file tree
Hide file tree
Showing 39 changed files with 1,815 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .coveragerc
@@ -0,0 +1,6 @@
[report]
include =
src/Products/*
omit =
*/test*
*/upgrades/*
5 changes: 5 additions & 0 deletions .editorconfig
@@ -0,0 +1,5 @@
[*.js]
indent_size = 2

[{*.html,*.dtml,*.pt,*.zcml}]
indent_size = 2
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
CHANGES.rst merge=union
20 changes: 20 additions & 0 deletions .gitignore
@@ -0,0 +1,20 @@
*.egg-info
*.mo
*.pyc
.installed.cfg
.mr.developer.cfg
.project
.pydevproject
.settings/
bin/
buildout-cache/
develop-eggs/
parts/
src/*
!src/Products
var/
htmlcov/
.coverage
*.log
output.xml
*.swp
17 changes: 17 additions & 0 deletions .travis.yml
@@ -0,0 +1,17 @@
language: python
python:
- 2.7
install:
- mkdir -p buildout-cache/{eggs,downloads}
- python bootstrap-buildout.py -c travis.cfg
- bin/buildout -Nc travis.cfg
script:
- bin/test
- bin/createcoverage
after_success:
- pip install coveralls
- coveralls

notifications:
email:
- ebrehault@gmail.com

0 comments on commit 5717a46

Please sign in to comment.