Skip to content

Commit

Permalink
add coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
mfussenegger committed Jul 9, 2014
1 parent b028f74 commit 0e69c44
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
17 changes: 10 additions & 7 deletions .travis.yml
@@ -1,13 +1,16 @@
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 2.6
- 2.7
- 3.3
- 3.4
install:
- python bootstrap.py
- ./bin/buildout
- python bootstrap.py
- ./bin/buildout
script:
- ./bin/test
- bin/coverage run bin/test
after_success:
- pip install coveralls
- coveralls
notifications:
email: false
7 changes: 6 additions & 1 deletion buildout.cfg
Expand Up @@ -8,6 +8,7 @@ parts = test
tox
scripts
sphinx
coverage

[scripts]
recipe = zc.recipe.egg:script
Expand All @@ -16,6 +17,10 @@ eggs = crate
crate [test,sqlalchemy]
wheel

[coverage]
recipe = zc.recipe.egg
eggs = createcoverage

[tox]
recipe = zc.recipe.egg:script
eggs = tox
Expand All @@ -37,6 +42,6 @@ eggs = sphinx
crate-docs-theme
relative-paths=true
scripts = sphinx-build=sphinx
initialization =
initialization =
sys.argv.extend(['-N', '-q', '-b', 'html',
'-E', 'docs', '${buildout:directory}/out/html'])

0 comments on commit 0e69c44

Please sign in to comment.