Skip to content

Commit

Permalink
disable check for rosdep2 because it fails in 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasw committed Jun 9, 2024
1 parent 065af82 commit 8223585
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utilities/roswtf/src/roswtf/py_pip_deb_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@
py_to_deb_core_packages = {
'catkin_pkg': '%s-catkin-pkg' % python_prefix,
'rospkg': '%s-rospkg' % python_prefix,
'rosdep2': '%s-rosdep' % python_prefix,
# TODO(lucasw) this fails in 24.04, there is no python3-rosdep2 it is built from source
# 'rosdep2': '%s-rosdep' % python_prefix,
}
# optional ROS python packages and their corresponding .deb packages
py_to_deb_optional_packages = {
Expand Down
1 change: 1 addition & 0 deletions utilities/roswtf/test/test_roswtf_command_line_offline.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def test_offline(self):
self._check_output(output, cmds)

def _check_output(self, output, cmds):
# TODO(lucasw) this is failing in 20.04 CI currently
# do both a positive and negative test
self.assertTrue(
'No errors or warnings' in output or 'Found 1 error' in output,
Expand Down

0 comments on commit 8223585

Please sign in to comment.