From 0089bd820f19905452a85544a6b2093b7ffa0803 Mon Sep 17 00:00:00 2001 From: ethernet Date: Tue, 23 Jun 2026 13:17:31 -0400 Subject: [PATCH] fix(ci): classify should default to no MCP --- tests/ci/test_classify_changes.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/ci/test_classify_changes.py b/tests/ci/test_classify_changes.py index 73c37f8ac60..e1db0ccf20d 100644 --- a/tests/ci/test_classify_changes.py +++ b/tests/ci/test_classify_changes.py @@ -20,14 +20,14 @@ _mod = importlib.util.module_from_spec(_spec) _spec.loader.exec_module(_mod) classify = _mod.classify -ALL = { +DEFAULT = { "python": True, "frontend": True, "docker_meta": True, "site": True, "scan": True, "deps": True, - "mcp_catalog": True, + "mcp_catalog": False, } @@ -73,10 +73,10 @@ CASES = { _lanes(python=True, scan=True, mcp_catalog=True), ), # Fail open: CI-config / empty / blank diffs run everything. - ".github change → all": ([".github/workflows/tests.yml"], ALL), - "action change → all": ([".github/actions/detect-changes/action.yml"], ALL), - "empty diff → all": ([], ALL), - "blank lines → all": (["", " "], ALL), + ".github change → all": ([".github/workflows/tests.yml"], DEFAULT), + "action change → all": ([".github/actions/detect-changes/action.yml"], DEFAULT), + "empty diff → all": ([], DEFAULT), + "blank lines → all": (["", " "], DEFAULT), }