Skip to content

Commit

Permalink
disabling FPS & TF tests for ROS-CI
Browse files Browse the repository at this point in the history
  • Loading branch information
administrator committed Aug 9, 2024
1 parent a7129c7 commit f49627c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
modified to make it work, see py_rs_utils for more details.
To check the fps, a value 'expected_fps_in_hz' has to be added to the corresponding theme
'''
@pytest.mark.skipif (os.getenv('RS_ROS_REGRESSION', "not found") == "not found",reason="Regression is not enabled, define RS_ROS_REGRESSION")
@pytest.mark.parametrize("launch_descr_with_parameters", [
pytest.param(test_params_test_fps_d455, marks=pytest.mark.d455),
pytest.param(test_params_test_fps_d415, marks=pytest.mark.d415),
Expand Down
6 changes: 4 additions & 2 deletions realsense2_camera/test/live_camera/test_camera_tf_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@
'enable_gyro': 'true',
}
@pytest.mark.parametrize("launch_descr_with_parameters", [
pytest.param(test_params_tf_static_change_d455, marks=pytest.mark.d455),
#LRS-1181 [ROS2] To debug inconsistent TF (transform) test that fails on Jenkin 219 NUC on D455
#pytest.param(test_params_tf_static_change_d455, marks=pytest.mark.d455),
pytest.param(test_params_tf_static_change_d435i, marks=pytest.mark.d435i),
pytest.param(test_params_tf_static_change_d415, marks=pytest.mark.d415),
],indirect=True)
Expand Down Expand Up @@ -160,7 +161,8 @@ def process_data(self, themes, enable_infra1):
'tf_publish_rate': '1.1',
}
@pytest.mark.parametrize("launch_descr_with_parameters", [
pytest.param(test_params_tf_d455, marks=pytest.mark.d455),
#LRS-1181 [ROS2] To debug inconsistent TF (transform) test that fails on Jenkin 219 NUC on D455
#pytest.param(test_params_tf_d455, marks=pytest.mark.d455),
pytest.param(test_params_tf_d435i, marks=pytest.mark.d435i),
pytest.param(test_params_tf_d415, marks=pytest.mark.d415),
],indirect=True)
Expand Down

0 comments on commit f49627c

Please sign in to comment.