From d842d9be72caa6cabf5a3de0e4a1fb47035e373e Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 11 Sep 2024 09:13:40 +0200 Subject: [PATCH] test/test_targets: Exclude efinix_ti375_c529_dev_kit from CI since requires toolchain. --- test/test_targets.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/test_targets.py b/test/test_targets.py index e58335919..8edccd351 100644 --- a/test/test_targets.py +++ b/test/test_targets.py @@ -19,7 +19,8 @@ class TestTargets(unittest.TestCase): "qmtech_rp2040_daughterboard", # Reason: Not a real platform. "enclustra_st1", # Readon: Not a real platform. "quicklogic_quickfeather", # Reason: No default clock. - "colognechip_gatemate_evb", # Reason: toolchain not yet mainlined + "colognechip_gatemate_evb", # Reason: Toolchain not yet mainlined. + "efinix_ti375_c529_dev_kit", # Reason: Require Efinity toolchain. "efinix_titanium_ti60_f225_dev_kit", # Reason: Require Efinity toolchain. "efinix_trion_t120_bga576_dev_kit", # Reason: Require Efinity toolchain. "efinix_trion_t20_bga256_dev_kit", # Reason: Require Efinity toolchain. @@ -34,7 +35,8 @@ class TestTargets(unittest.TestCase): excluded_targets = [ "simple", # Reason: Generic target. "quicklogic_quickfeather", # Reason: No default clock. - "colognechip_gatemate_evb", # Reason: toolchain not yet mainlined + "colognechip_gatemate_evb", # Reason: Toolchain not yet mainlined. + "efinix_ti375_c529_dev_kit", # Reason: Require Efinity toolchain. "efinix_titanium_ti60_f225_dev_kit", # Reason: Require Efinity toolchain. "efinix_trion_t120_bga576_dev_kit", # Reason: Require Efinity toolchain. "efinix_trion_t20_bga256_dev_kit", # Reason: Require Efinity toolchain.