Skip to content

Commit

Permalink
Added coverage report to nose test results.
Browse files Browse the repository at this point in the history
  • Loading branch information
reinout committed Jan 24, 2013
1 parent 3e3b9a9 commit d0d4182
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ develop-eggs
koe
parts
src/djangorecipe.egg-info
.coverage
htmlcov
6 changes: 6 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[nosetests]
cover-package = djangorecipe
with-coverage = 1
cover-erase = 1
cover-html = 1
cover-html-dir = htmlcov
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ def read_file(name):
'zc.recipe.egg',
'Django',
],
extras_require={'test': ['mock']},
extras_require={'test': ['coverage',
'mock']},
entry_points="""
# -*- Entry points: -*-
[zc.buildout]
Expand Down

0 comments on commit d0d4182

Please sign in to comment.