Skip to content

Commit

Permalink
fixing coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
John Purcell committed Jul 8, 2018
1 parent 28c6313 commit 2a05bdc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[report]
omit =
vincent/_version.py
vincent/__init__.py
vincent_crons/__init__.py

[paths]
source =
vincent/
vincent_crons/
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ def initialize_options(self):
self.pytest_args = [
'tests',
'-rx',
'--cov=' + __library_name__,
'--cov=' + __package_name__,
'--cov=' + __package_name__ + '_crons',
'--cov-report=term-missing',
'--cov-config=.coveragerc',
]
Expand All @@ -66,7 +67,8 @@ def initialize_options(self):
'tests',
'-rx',
'--junitxml=junit.xml',
'--cov=' + __library_name__,
'--cov=' + __package_name__,
'--cov=' + __package_name__ + '_crons',
'--cov-report=term-missing',
'--cov-config=.coveragerc',
]
Expand Down

0 comments on commit 2a05bdc

Please sign in to comment.