Conversation
hidmic
requested changes
May 15, 2019
hidmic
left a comment
There was a problem hiding this comment.
This looks amazing, great job @ivanpauno !
test_launch_ros/test/test_launch_ros/xml_frontend/test_node_xml.py
Outdated
Show resolved
Hide resolved
cda8719 to
c56dff8
Compare
3abfbe9 to
1282980
Compare
Member
Author
|
Rebased again with master |
Member
Author
|
@hidmic 218d879 and ros2/launch@cd4ff85 handles parameters correctly after #31. |
f0e244c to
86bd241
Compare
Member
Author
wjwwood
approved these changes
Jun 27, 2019
test_launch_ros/test/test_launch_ros/launch_frontend/test_node_frontend.py
Outdated
Show resolved
Hide resolved
hidmic
reviewed
Jul 3, 2019
| import pytest | ||
|
|
||
| # Scaping the quote is needed in 'a_string' launch configuration, becuase of how the parser works. | ||
| # TODO(ivanpauno): Check if it's possible to avoid that. |
There was a problem hiding this comment.
@ivanpauno is all this quoting for 'a_string' due to substitution grammar parsing? Is that bad for YAML markup?
Member
Author
There was a problem hiding this comment.
Yeah, the substitution grammar needs the quotes escaped. In YAML markup you have the same problem, but it's not particularly "bad" for it.
The yaml example is in the same file (below the xml example).
test_launch_ros/test/test_launch_ros/launch_frontend/test_node_frontend.py
Outdated
Show resolved
Hide resolved
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
…ckage.xml. Move test descriptions in place Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
This reverts commit 218d879. Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
…ated test. Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivan <ivanpauno@gmail.com>
Signed-off-by: ivan <ivanpauno@gmail.com>
Signed-off-by: ivan <ivanpauno@gmail.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
f456720 to
3a95e38
Compare
hidmic
approved these changes
Jul 10, 2019
| package = parser.parse_substitution(entity.get_attr('package')) | ||
| kwargs['package'] = package | ||
| executable = parser.parse_substitution(entity.get_attr('executable')) | ||
| kwargs['node_executable'] = executable |
There was a problem hiding this comment.
@ivanpauno just curious, why the two step assignment?
Signed-off-by: ivanpauno <ivanpauno@ekumenlabs.com>
34 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add parsing method for Node and ExecutableInPackage.
Add test example of launching a node from xml.
Blocked by ros2/launch#226
Blocked by #33