Skip to content

Commit aa34714

Browse files
kevinelliottclaude
andcommitted
fix: remove coverage profile flag to fix Windows test failure
The -coverprofile flag with output file was causing Windows to interpret the .txt file as a package name. Simplified test command to work across all platforms. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 78d28ec commit aa34714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: go mod download
4242

4343
- name: Run tests
44-
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
44+
run: go test -v -race ./...
4545

4646
- name: Build
4747
run: go build -v ./...

0 commit comments

Comments
 (0)