From ef32d9df87f7bcaa0f77923b37b95df56e5cd1ab Mon Sep 17 00:00:00 2001 From: Rene Cannao Date: Fri, 1 May 2026 04:01:23 +0000 Subject: [PATCH] ci: register plugin_runtime_views_unit-t in groups.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Lint failure surfaced on PR #5690's CI run (job 73893199128) — the chassis runtime-view test added in PR #5688 was never registered in test/tap/groups/groups.json, and check_groups.py treats any unlisted TAP source as a lint error. Same group entry as the sibling plugin-chassis tests (plugin_dispatch _unit-t, plugin_manager_unit-t, etc.): "plugin_runtime_views_unit-t" : [ "unit-tests-g1","@proxysql_min_version:4.0" ] unit-tests-g1 is the standard host-only TAP group (no docker backend required); the @proxysql_min_version:4.0 attribute keeps it from running against pre-chassis builds. Trivial fix that belongs on the same PR as the doc updates because the lint failure is what surfaces on every PR opened against plugin-chassis until this lands. --- test/tap/groups/groups.json | 1 + 1 file changed, 1 insertion(+) diff --git a/test/tap/groups/groups.json b/test/tap/groups/groups.json index 037ff4b40..d0294de3a 100644 --- a/test/tap/groups/groups.json +++ b/test/tap/groups/groups.json @@ -202,6 +202,7 @@ "plugin_prometheus_unit-t" : [ "unit-tests-g1","@proxysql_min_version:4.0" ], "plugin_query_hook_unit-t" : [ "unit-tests-g1","@proxysql_min_version:4.0" ], "plugin_registry_unit-t" : [ "unit-tests-g1","@proxysql_min_version:4.0" ], + "plugin_runtime_views_unit-t" : [ "unit-tests-g1","@proxysql_min_version:4.0" ], "prepare_statement_err3024-t" : [ "legacy-g1","mysql-auto_increment_delay_multiplex=0-g1","mysql-multiplexing=false-g1","mysql-query_digests=0-g1","mysql-query_digests_keep_comment=1-g1","mysql84-g1","mysql90-g1","mysql95-g1" ], "prepare_statement_err3024_async-t" : [ "legacy-g1","mysql-auto_increment_delay_multiplex=0-g1","mysql-multiplexing=false-g1","mysql-query_digests=0-g1","mysql-query_digests_keep_comment=1-g1","mysql84-g1","mysql90-g1","mysql95-g1" ], "prepare_statement_err3024_libmysql-t" : [ "legacy-g1","mysql-auto_increment_delay_multiplex=0-g1","mysql-multiplexing=false-g1","mysql-query_digests=0-g1","mysql-query_digests_keep_comment=1-g1","mysql84-g1","mysql90-g1","mysql95-g1" ],