Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow flaky ros2_cpp_tests #342

Merged
merged 2 commits into from
Jul 1, 2024
Merged
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
2 changes: 1 addition & 1 deletion ros2/ament.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def py_launcher(name, deps, idl_deps = None, **kwargs):

def split_kwargs(**kwargs):
"""Split kwargs into those to be forwarded to the actual binary target and launcher target respectively."""
launcher_attrs = ["args", "env", "size", "tags", "timeout", "visibility"]
launcher_attrs = ["args", "env", "flaky", "size", "tags", "timeout", "visibility"]
launcher_target_kwargs = {attr: kwargs.pop(attr) for attr in launcher_attrs if attr in kwargs}
return launcher_target_kwargs, kwargs

Expand Down