-
Notifications
You must be signed in to change notification settings - Fork 20
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
test(leftovers): add tests to hit uncovered code #235
Conversation
The style in this PR agrees with This formatting comment was generated automatically by a script in uc-cdis/wool. |
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.
/indexd/index/drivers/query/__init__.py
is covered at 75% because of 2 abstract methods that use pass
instead of raise NotImplementedError("TODO")
like our other abstract methods do. NotImplementedError
is ignored by the coverage report, so if we change these functions to use it the coverage for this file will be 100%
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.
87% :D
6278c2e
to
59324ac
Compare
Adds miscellaneous tests to cover leftover uncovered code.
Improvements
Adds missing unit tests