Commit 2566a36
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
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
204 | 204 | | |
205 | 205 | | |
206 | 206 | | |
207 | | - | |
| 207 | + | |
208 | 208 | | |
209 | 209 | | |
210 | 210 | | |
| |||
0 commit comments