Skip to content

Commit

Permalink
show missing lines in coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
tamland committed Oct 29, 2014
1 parent ddfb57e commit c678ecd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = [ '--cov=' + SRC_DIR, 'tests' ]
self.test_args = [
'--cov=' + SRC_DIR,
'--cov-report=term-missing',
'tests']
self.test_suite = True
def run_tests(self):
import pytest
Expand Down

0 comments on commit c678ecd

Please sign in to comment.