-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enabling coverage in robot commander (#787)
* Enabling code coverage for robot commander * Updating package * fixing cmake Co-authored-by: Fotios <support@shadowrobot.com> Co-authored-by: Devops <devops@shadowrobot.com>
- Loading branch information
1 parent
cba8621
commit b6f696c
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
<launch> | ||
<arg name="coverage" default="false"/> | ||
<arg name="pythontest_launch_prefix" value="$(eval 'coverage run' if arg('coverage') else '')"/> | ||
|
||
<arg name="sim" default="true"/> | ||
<arg name="gui" default="false"/> | ||
<include file="$(find sr_robot_launch)/launch/sr_ur_arm.launch"> | ||
<arg name="sim" value="$(arg sim)"/> | ||
<arg name="gui" value="$(arg gui)"/> | ||
</include> | ||
<test test-name="test_robot_commander" pkg="sr_robot_commander" type="test_robot_commander.py" time-limit="600.0"/> | ||
<test test-name="test_robot_commander" launch-prefix="$(arg pythontest_launch_prefix)" pkg="sr_robot_commander" type="test_robot_commander.py" time-limit="600.0"/> | ||
</launch> |