Navigation Menu

Skip to content

Commit

Permalink
Add 'make coverage' setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
audreyfeldroy committed Aug 24, 2013
1 parent d3fb86f commit 3f9974d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -40,3 +40,6 @@ output/*/index.html

# Sphinx
docs/_build

# Coverage
htmlcov
6 changes: 6 additions & 0 deletions Makefile
Expand Up @@ -21,6 +21,12 @@ test:
testall:
tox

coverage:
coverage run --source complexity setup.py test
coverage report -m
coverage html
open htmlcov/index.html

docs:
$(MAKE) -C docs clean
$(MAKE) -C docs html
Expand Down

0 comments on commit 3f9974d

Please sign in to comment.