From 2829498236aedcdfb896d128f9243a1ac5e29154 Mon Sep 17 00:00:00 2001 From: Noah Moroze Date: Thu, 5 Dec 2024 15:35:34 +0800 Subject: [PATCH] [manuf] Fix missing test tags for FT FPGA tests Commit fd9ba9d261e23647cca2285248014526dab8f4b1 dropped some test coverage, since the conditional unintentionally removes the default test tags if it evaluates to False. This commit fixes the issue and should fix the "Verify FPGA jobs" CI workflow. Signed-off-by: Noah Moroze --- sw/device/silicon_creator/manuf/base/BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/device/silicon_creator/manuf/base/BUILD b/sw/device/silicon_creator/manuf/base/BUILD index 9648bbff50188..e081457541f54 100644 --- a/sw/device/silicon_creator/manuf/base/BUILD +++ b/sw/device/silicon_creator/manuf/base/BUILD @@ -417,7 +417,7 @@ filegroup( tags = [ "lc_test_locked0", "manuf", - ] + ["manual"] if config.get("offline", False) else [], + ] + (["manual"] if config.get("offline", False) else []), test_cmd = _FT_PROVISIONING_CMD_ARGS, test_harness = _FT_PROVISIONING_HARNESS.format(sku), ),