Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@ jobs:
rmf_visualization_obstacles
rmf_visualization_rviz2_plugins
rmf_visualization_schedule
dist-matrix: '[{"ros_distribution": "rolling", "ubuntu_distribution": "noble"}]'

22 changes: 0 additions & 22 deletions .github/workflows/style.yaml

This file was deleted.

4 changes: 3 additions & 1 deletion rmf_visualization_building_systems/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
maintainer_email='yadunund@openrobotics.org',
description='A visualizer for doors and lifts',
license='Apache License, Version 2.0',
tests_require=['pytest'],
extras_require={
'test': ['pytest'],
},
entry_points={
'console_scripts': [
'rmf_visualization_building_systems = \
Expand Down
3 changes: 2 additions & 1 deletion rmf_visualization_fleet_states/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ rclcpp_components_register_node(fleetstates_visualizer
EXECUTABLE fleetstates_visualizer_node)

#===============================================================================
if(BUILD_TESTING)
option(STYLE_TEST "Run uncrustify to evaluate the code style")
if(BUILD_TESTING AND STYLE_TEST)
find_package(ament_cmake_uncrustify REQUIRED)
find_package(rmf_utils REQUIRED)
find_file(uncrustify_config_file
Expand Down
3 changes: 2 additions & 1 deletion rmf_visualization_floorplans/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ rclcpp_components_register_node(floorplan_visualizer
EXECUTABLE floorplan_visualizer_node)

#===============================================================================
if(BUILD_TESTING)
option(STYLE_TEST "Run uncrustify to evaluate the code style")
if(BUILD_TESTING AND STYLE_TEST)
find_package(ament_cmake_uncrustify REQUIRED)
find_package(rmf_utils REQUIRED)
find_file(uncrustify_config_file
Expand Down
3 changes: 2 additions & 1 deletion rmf_visualization_navgraphs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ rclcpp_components_register_node(navgraph_visualizer
EXECUTABLE navgraph_visualizer_node)

#===============================================================================
if(BUILD_TESTING)
option(STYLE_TEST "Run uncrustify to evaluate the code style")
if(BUILD_TESTING AND STYLE_TEST)
find_package(ament_cmake_uncrustify REQUIRED)
find_package(rmf_utils REQUIRED)
find_file(uncrustify_config_file
Expand Down
3 changes: 2 additions & 1 deletion rmf_visualization_obstacles/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ rclcpp_components_register_node(obstacle_visualizer
EXECUTABLE obstacle_visualizer_node)

#===============================================================================
if(BUILD_TESTING)
option(STYLE_TEST "Run uncrustify to evaluate the code style")
if(BUILD_TESTING AND STYLE_TEST)
find_package(ament_cmake_uncrustify REQUIRED)
find_package(rmf_utils REQUIRED)
find_file(uncrustify_config_file
Expand Down
3 changes: 2 additions & 1 deletion rmf_visualization_rviz2_plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ find_package(rviz_rendering REQUIRED)
find_package(rviz_default_plugins REQUIRED)
find_package(rmf_traffic_ros2 REQUIRED)

if(BUILD_TESTING)
option(STYLE_TEST "Run uncrustify to evaluate the code style")
if(BUILD_TESTING AND STYLE_TEST)
find_package(ament_cmake_uncrustify REQUIRED)
find_package(rmf_utils REQUIRED)
find_file(uncrustify_config_file
Expand Down
3 changes: 2 additions & 1 deletion rmf_visualization_schedule/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ find_package(rmf_visualization_msgs REQUIRED)
find_package(Eigen3 REQUIRED)
find_package(Threads)

if(BUILD_TESTING)
option(STYLE_TEST "Run uncrustify to evaluate the code style")
if(BUILD_TESTING AND STYLE_TEST)
find_package(ament_cmake_uncrustify REQUIRED)
find_package(rmf_utils REQUIRED)
find_file(uncrustify_config_file
Expand Down
Loading