Skip to content

Commit 2566a36

Browse files
Dumbrisclaude
andauthored
fix(ci): point Server Edition test job at internal/serveredition (not deleted internal/teams) (#680)
The Server Edition CI job (added #631) ran: go test -race -tags server ./internal/teams/... ./internal/config/... But the Teams->Server Edition rename (#603) moved that code to internal/serveredition/, and #679 deleted the last stale internal/teams/ file. So the job failed with 'lstat ./internal/teams/: no such file or directory' — and before that, it was silently testing the wrong (stale, near-empty) path, never the real serveredition packages. Fix: test ./internal/serveredition/... instead. Verified locally: go test -race -tags server ./internal/serveredition/... ./internal/config/... -> all 8 packages ok. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 8196ea0 commit 2566a36

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ jobs:
204204
run: go build -tags server ./cmd/mcpproxy
205205

206206
- name: Test server edition packages
207-
run: go test -race -tags server ./internal/teams/... ./internal/config/...
207+
run: go test -race -tags server ./internal/serveredition/... ./internal/config/...
208208

209209
build:
210210
name: Build

0 commit comments

Comments
 (0)