-
Notifications
You must be signed in to change notification settings - Fork 120
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
Replacing several test util function with a generic version #404
Conversation
ChangeLog: - updated several test utils with a generic PtrOf - updated references using iotils (Deprecated) with os equivalent import.
c6989ef
to
99be328
Compare
This is mostly fixing up the test tooling instead of using multiple implementation of BoolPtr, StringPtr etc, I removed all of them in favor of a PtroOf that uses generics. Also, ioutils is deprecated so fixed up the imports. All the functions have the same signature. |
Good catch. To eliminate |
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #404 +/- ##
==========================================
- Coverage 90.49% 90.46% -0.04%
==========================================
Files 125 126 +1
Lines 7458 7432 -26
==========================================
- Hits 6749 6723 -26
Misses 550 550
Partials 159 159
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Done |
LGTM. It seems some tests are now failing because of changes in jet-test-data. |
bee49bc
to
743df3a
Compare
That's odd, that seems to go against how submodule are supposed to work. Do you mind if I just comment out the line:
if we're using submodule, it should have a commit ID that the testdata should honor. That line ignores all of it and always pulls master. |
Yeah, you are right. Maybe move that line into |
Done |
ChangeLog: