Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 committed May 21, 2024
1 parent 9f8e856 commit 72bb2a9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ def run_example_tests():
examples_scripts.append(os.path.join(root, f))
try:
__run_example_tests_helper(examples_scripts)
except (ImportError, ValueError) as e:
if "linkml" in str(e):
pass # this is OK because linkml is not always installed
else:
raise e
except (ImportError, ValueError, ModuleNotFoundError) as e:
if "linkml" in str(e):
pass # this is OK because linkml is not always installed
else:
raise e


def run_example_ros3_tests():
Expand Down

0 comments on commit 72bb2a9

Please sign in to comment.