Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rafal-gorecki committed May 8, 2024
1 parent 44c72aa commit 7a10909
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,12 @@ def generate_test_description():
"launch",
"rosbot_xl_gazebo",
"simulation.launch.py",
f'world:={get_package_share_directory("husarion_gz_worlds")}/worlds/empty_with_plugins.sdf',
(
f'world:={get_package_share_directory("husarion_office_gz")}'
"/worlds/empty_with_plugins.sdf"
),
"robots:=robot1={y: -4.0}; robot2={y: 0.0};",
"headless:=False",
"headless:=True",
],
output="screen",
)
Expand Down
7 changes: 5 additions & 2 deletions rosbot_xl_gazebo/test/test_multirobot_mecanum_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
import launch_pytest
import pytest
import rclpy
from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription
from launch.actions import ExecuteProcess
from ament_index_python.packages import get_package_share_directory
from launch_testing.actions import ReadyToTest
from launch_testing.util import KeepAliveProc
from rclpy.executors import SingleThreadedExecutor
Expand All @@ -38,7 +38,10 @@ def generate_test_description():
"launch",
"rosbot_xl_gazebo",
"simulation.launch.py",
f'world:={get_package_share_directory("husarion_gz_worlds")}/worlds/empty_with_plugins.sdf',
(
f'world:={get_package_share_directory("husarion_office_gz")}'
"/worlds/empty_with_plugins.sdf"
),
"robots:=robot1={y: -4.0}; robot2={y: 0.0};",
"mecanum:=True",
"headless:=True",
Expand Down

0 comments on commit 7a10909

Please sign in to comment.