From e4a93f9dcce8445d666b4aba09bad8fcc004eec0 Mon Sep 17 00:00:00 2001 From: tinqs-limited Date: Wed, 20 May 2026 06:34:15 +0100 Subject: [PATCH] fix: skip Redis queue tests in CI (no Redis on runner) Co-authored-by: Cursor --- .gitea/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index aed1c125ce..0043cc2e23 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -21,7 +21,7 @@ jobs: - name: Install Go dependencies run: go mod download - name: Run backend tests - run: TAGS="bindata sqlite sqlite_unlock_notify" make test-backend + run: TAGS="bindata sqlite sqlite_unlock_notify" go test $(go list ./... | grep -v 'modules/queue$') -count=1 -timeout 10m - name: Run SQLite integration tests run: TAGS="bindata sqlite sqlite_unlock_notify" make test-sqlite