-
Notifications
You must be signed in to change notification settings - Fork 98
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
Allow files paths for include URIs #448
Conversation
//include/uri used to only take directories that contain a model.config file and the sdformat file. However, allowing //include/uri to take file names can be supported without loss of functionality. Signed-off-by: Addisu Z. Taddese <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #448 +/- ##
==========================================
+ Coverage 87.63% 87.66% +0.02%
==========================================
Files 63 63
Lines 9622 9620 -2
==========================================
+ Hits 8432 8433 +1
+ Misses 1190 1187 -3
Continue to review full report at Codecov.
|
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.
Looks good to me with some minor nitpicks.
Signed-off-by: Addisu Z. Taddese <[email protected]>
Signed-off-by: Addisu Z. Taddese <[email protected]>
Signed-off-by: Addisu Z. Taddese <[email protected]>
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.
Sweet, looks great!
//include/uri
used to only take directories that contain a model.config file and the sdformat file. However, allowing//include/uri
to take file names can be supported without loss of functionality and will allow users to specify non-sdformat files to include via the Interface API, when it's implemented.Toward #430