Skip to content
This repository was archived by the owner on Feb 11, 2025. It is now read-only.

Commit fb6c6f2

Browse files
committed
Fix test coverage filtering
1 parent 93955cb commit fb6c6f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: unit-tests
2323
run: |
2424
go test ./... -coverprofile=coverage.out
25-
cat coverage.out | grep -v "query/parser.gen.go" > coverage_filtered.out | grep -v "github.com/defer-panic/dumbql/query/ast.go:81"
25+
cat coverage.out | grep -v "query/parser.gen.go" | grep -v "github.com/defer-panic/dumbql/query/ast.go:81" > coverage_filtered.out
2626
go tool cover -func=coverage_filtered.out
2727
2828
- name: golangci-lint

0 commit comments

Comments
 (0)