From 168e60460240d94ca03cde45e154f09970fc5b2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=9F=E6=9C=88?= Date: Tue, 26 May 2026 23:08:16 +0800 Subject: [PATCH] ci: use test:ci to skip integration tests in CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The HermesAcpClient integration tests require a live Hermes agent process and always timeout (3 × 120s) in CI containers, causing every CI run to fail for ~6 minutes before reporting failure. Switch from `bun run test` to `bun run test:ci` which was already defined in all testable packages — workflow-agent-hermes's test:ci runs only unit tests (__tests__/*.test.ts), skipping integration/. --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9506b7a..f090c96 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -22,4 +22,4 @@ jobs: run: bun run check - name: Test - run: bun run test + run: bun run test:ci