From 8b228bb0e549750224c7f86dbe1e40cf084107f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Ruiz=20Garc=C3=ADa?= Date: Mon, 15 Jun 2026 19:20:51 +0200 Subject: [PATCH] fix: ignore catalog.updated and integration.updated in parity tests opencode 1.17.7 emits new catalog.updated and integration.updated events in serve mode during provider/model catalog initialization. These are internal cache-invalidation signals with empty payloads, analogous to plugin.added and connector.updated already in the ignore set. Add them to _PARITY_IGNORED_TYPES to restore parity. --- tools/mock-llm-parity.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/mock-llm-parity.py b/tools/mock-llm-parity.py index 603b367..bf29397 100644 --- a/tools/mock-llm-parity.py +++ b/tools/mock-llm-parity.py @@ -53,6 +53,8 @@ "plugin.updated", "connector.updated", "reference.updated", + "catalog.updated", + "integration.updated", }