-
Notifications
You must be signed in to change notification settings - Fork 10
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
Add cli with config tests #495
Conversation
class TestInspector(TestCase): | ||
"""A common helper class for testing the NWBInspector.""" |
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.
Peeled out this class so the helpers for asserting log file contents can be used across the suite
Might be worth moving to nwbinspector.testing
in a follow-up
…atawithoutborders/nwbinspector into add_cli_with_config_tests
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #495 +/- ##
==========================================
+ Coverage 82.06% 82.14% +0.07%
==========================================
Files 47 47
Lines 1355 1355
==========================================
+ Hits 1112 1113 +1
+ Misses 243 242 -1
Flags with carried forward coverage won't be shown. Click here to find out more. |
Motivation
Turns out we actually didn't have a CLI test for the
--config dandi
caseAdded here, will fail until #494 is merged (at which point it should then pass)