fix: skip Redis queue tests in CI (no Redis on runner)

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-20 06:34:15 +01:00
parent 84733256ae
commit e4a93f9dcc
+1 -1
View File
@@ -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