-
Notifications
You must be signed in to change notification settings - Fork 4
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
89 add tests to cover missing scorer behavior #94
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #94 +/- ##
==========================================
+ Coverage 86.81% 86.93% +0.12%
==========================================
Files 49 49
Lines 1577 1577
==========================================
+ Hits 1369 1371 +2
+ Misses 208 206 -2 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
|
||
@pytest.mark.parametrize("n_process", [1, 2]) | ||
@pytest.mark.parametrize("with_progress", [True, False]) | ||
@pytest.mark.parametrize("with_scorer", [True, False]) |
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.
Just wanted to check - this just being removed because the test fixture just wasn't being used?
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.
correct
This gets the job done to address coverage concerns in #84.
I'd also like to look into the bare
except
error catching. We should be more specific about what errors are okay, and which we want to let be thrown.