Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
210910794
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2021
210910794
Commits
14f8cc3e
Unverified
Commit
14f8cc3e
authored
5 years ago
by
Carlos A. Orduno
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix bt xml paths on tests (#1293)
parent
ac4d0aff
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
nav2_system_tests/src/system/test_multi_robot_launch.py
+2
-2
2 additions, 2 deletions
nav2_system_tests/src/system/test_multi_robot_launch.py
nav2_system_tests/src/system/test_system_launch.py
+2
-2
2 additions, 2 deletions
nav2_system_tests/src/system/test_system_launch.py
with
4 additions
and
4 deletions
nav2_system_tests/src/system/test_multi_robot_launch.py
+
2
−
2
View file @
14f8cc3e
...
...
@@ -17,7 +17,7 @@
import
os
import
sys
from
ament_index_python.packages
import
get_package_prefix
,
get_package_share_directory
from
ament_index_python.packages
import
get_package_share_directory
from
launch
import
LaunchDescription
,
LaunchService
from
launch.actions
import
(
ExecuteProcess
,
GroupAction
,
...
...
@@ -35,7 +35,7 @@ def generate_launch_description():
urdf
=
os
.
getenv
(
'
TEST_URDF
'
)
sdf
=
os
.
getenv
(
'
TEST_SDF
'
)
bt_xml_file
=
os
.
path
.
join
(
get_package_
prefix
(
'
nav2_bt_navigator
'
),
bt_xml_file
=
os
.
path
.
join
(
get_package_
share_directory
(
'
nav2_bt_navigator
'
),
'
behavior_trees
'
,
os
.
getenv
(
'
BT_NAVIGATOR_XML
'
))
...
...
This diff is collapsed.
Click to expand it.
nav2_system_tests/src/system/test_system_launch.py
+
2
−
2
View file @
14f8cc3e
...
...
@@ -17,7 +17,7 @@
import
os
import
sys
from
ament_index_python.packages
import
get_package_prefix
,
get_package_share_directory
from
ament_index_python.packages
import
get_package_share_directory
from
launch
import
LaunchDescription
from
launch
import
LaunchService
...
...
@@ -33,7 +33,7 @@ def generate_launch_description():
map_yaml_file
=
os
.
getenv
(
'
TEST_MAP
'
)
world
=
os
.
getenv
(
'
TEST_WORLD
'
)
bt_navigator_xml
=
os
.
path
.
join
(
get_package_
prefix
(
'
nav2_bt_navigator
'
),
bt_navigator_xml
=
os
.
path
.
join
(
get_package_
share_directory
(
'
nav2_bt_navigator
'
),
'
behavior_trees
'
,
os
.
getenv
(
'
BT_NAVIGATOR_XML
'
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment