Skip to content

Commit 12fa595

Browse files
committed
add other ignore files; and remove go test --race
1 parent 621a28e commit 12fa595

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

.github/codecov.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,21 @@ coverage:
77
default:
88
informational: true
99
ignore:
10-
- "*test*"
11-
- "benchmark/"
12-
- "*testutils*"
13-
- ".*.pb.go"
10+
- "benchmark/**/*"
11+
- "stress/**/*"
12+
# All 'pb.go's
13+
- "**/*.pb.go"
14+
# Tests and test related files.
15+
- "test/**/*"
16+
- "xds/internal/testutils/**/*"
17+
- "xds/internal/test/**/*"
18+
- "balancer/rls/internal/test/e2e/**/*"
19+
- "testdata"
20+
# Other submodules.
21+
- "security/**/*"
22+
- "examples/**/*"
23+
- "interop/**/*"
24+
- "stats/**/*"
25+
- "gcp/**/*"
1426
comment:
1527
layout: "header, diff, files"

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
go-version: "stable"
1414

1515
- name: Run coverage
16-
run: go test -race -covermode=atomic -coverprofile=coverage.out -coverpkg=./... ./...
16+
run: go test -coverprofile=coverage.out -coverpkg=./... ./...
1717

1818
- name: Upload coverage to Codecov
1919
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)