File tree 2 files changed +17
-5
lines changed 2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,21 @@ coverage:
7
7
default :
8
8
informational : true
9
9
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/**/*"
14
26
comment :
15
27
layout : " header, diff, files"
Original file line number Diff line number Diff line change 13
13
go-version : " stable"
14
14
15
15
- name : Run coverage
16
- run : go test -race -covermode=atomic - coverprofile=coverage.out -coverpkg=./... ./...
16
+ run : go test -coverprofile=coverage.out -coverpkg=./... ./...
17
17
18
18
- name : Upload coverage to Codecov
19
19
uses : codecov/codecov-action@v3
You can’t perform that action at this time.
0 commit comments