Skip to content

Commit

Permalink
add coveragerc
Browse files Browse the repository at this point in the history
need parallel = True to avoid errors with coverage 5.0
  • Loading branch information
minrk committed Oct 19, 2018
1 parent e280234 commit 357d70e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[run]
parallel = True
omit =
ipyparallel/tests/*

[report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
omit =
ipyparallel/tests/*
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ __pycache__
.#*
.coverage
*coverage.xml
.coverage.*

0 comments on commit 357d70e

Please sign in to comment.