Changeset 0.22.6 (#148)

This commit is contained in:
2026-03-03 13:12:13 +00:00
parent 45fe965c32
commit d8e0664fa3
24 changed files with 983 additions and 2473 deletions

View File

@@ -261,7 +261,7 @@ jobs:
echo "${UNIT_PKGS}" | sed 's/^/ /'
echo ""
go test -v -race -count=1 -p 1 ${UNIT_PKGS}
go test -v -race -count=1 -p 1 -timeout 8m ${UNIT_PKGS}
echo "✓ Unit tests complete"
- name: Run SQLite handler integration tests
@@ -270,7 +270,7 @@ jobs:
DB_DRIVER: sqlite
run: |
echo "━━━ SQLite Integration Tests (handlers + stores) ━━━"
go test -v -race -count=1 -p 1 \
go test -v -race -count=1 -p 1 -timeout 8m \
./handlers/... \
./store/sqlite/...
echo "✓ SQLite integration tests complete"
@@ -351,7 +351,7 @@ jobs:
PGPASSWORD: ${{ secrets.POSTGRES_PASSWORD }}
run: |
echo "━━━ Postgres Integration Tests ━━━"
go test -v -race -count=1 -p 1 \
go test -v -race -count=1 -p 1 -timeout 8m \
./store/postgres/... \
./handlers/...
echo "✓ Postgres integration tests complete"