From 15d259edf4d1ebf9a1dbec8e37998cddb67c0685 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Sat, 29 Jun 2024 21:58:41 +0200 Subject: [PATCH] allow `flaky` `ros2_cpp_test`s --- ros2/ament.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ros2/ament.bzl b/ros2/ament.bzl index 2c0f0020..6d658a85 100644 --- a/ros2/ament.bzl +++ b/ros2/ament.bzl @@ -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