Skip to content

Commit

Permalink
Add test exception for Zed (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
luis-camero authored Oct 9, 2024
1 parent 0e0bd4b commit 2f04d13
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions clearpath_generator_common/test/test_generator_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ def test_samples(self):
try:
xacro.process_file(os.path.join(os.path.dirname(dst), 'robot.urdf.xacro')).toxml()
except xacro.XacroException as e:
if 'stereolabs' in src and 'package not found' in e.args[0]:
continue
errors.append("Sample '%s' xacro failed to load: '%s'" % (
sample,
e.args[0],
Expand Down

0 comments on commit 2f04d13

Please sign in to comment.