-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MAINT: Update coveragerc #1050
base: master
Are you sure you want to change the base?
MAINT: Update coveragerc #1050
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure
Hm, did you check where this decrease of coverage comes from? Seems like some stuff is omitted that shouldn't. |
I agree, something definitely went wrong here. I'll look through it |
Status? |
I'll merge this for now, but it seems our coverage is lower than we thought :/ |
Please remove the "merge master into branch" commit. |
@@ -10,16 +10,19 @@ omit = | |||
odl/diagnostics/* | |||
odl/util/* | |||
|
|||
# Omit until coveralls supports cuda. | |||
odl/space/cu_ntuples.py | |||
|
|||
# Omit until coveralls supports pywt. | |||
odl/trafos/wavelet.py |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We install pywavelets on Travis now, so this line can be removed.
@@ -46,6 +49,13 @@ exclude_lines = | |||
# Decorators |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment here: return NotImplemented
should go off the list, since it's part of actual functionality.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead, we may think about adding the RuntimeError
stuff that's just defensive coding.
This file has obviously become way outdated