File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -33,12 +33,11 @@ jobs:
3333 - name : Coverage
3434 if : matrix.go == '1.25.x'
3535 run : |
36- go test -v -covermode=count -coverprofile=coverage.out ./...
36+ go test -v -covermode=count -coverprofile=coverage.out -coverpkg=./... ./...
3737
3838 - name : Upload coverage to Coveralls
3939 if : matrix.go == '1.25.x'
4040 uses : coverallsapp/github-action@v2
4141 with :
4242 github-token : ${{ secrets.GITHUB_TOKEN }}
4343 path-to-lcov : coverage.out
44- allowed_bots : ' *'
Original file line number Diff line number Diff line change 1- # gotests [ ![ License] ( https://img.shields.io/badge/license-Apache%202.0-blue.svg )] ( https://github.com/cweill/gotests/blob/master/LICENSE ) [ ![ godoc] ( https://img.shields.io/badge/go-documentation-blue.svg )] ( https://godoc.org/github.com/cweill/gotests ) [ ![ Build Status] ( https://github.com/cweill/gotests/workflows/Go/badge.svg )] ( https://github.com/cweill/gotests/actions ) [ ![ Coverage Status] ( https://coveralls.io/repos/github/cweill/gotests/badge.svg?branch=master )] ( https://coveralls.io/github/cweill/gotests?branch=master ) [ ![ codebeat badge ] ( https://codebeat.co/badges/7ef052e3-35ff-4cab-88f9-e13393c8ab35 )] ( https://codebeat.co/projects/github-com-cweill-gotests ) [ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/cweill/gotests )] ( https://goreportcard.com/report/github.com/cweill/gotests )
1+ # gotests [ ![ License] ( https://img.shields.io/badge/license-Apache%202.0-blue.svg )] ( https://github.com/cweill/gotests/blob/master/LICENSE ) [ ![ godoc] ( https://img.shields.io/badge/go-documentation-blue.svg )] ( https://godoc.org/github.com/cweill/gotests ) [ ![ Build Status] ( https://github.com/cweill/gotests/workflows/Go/badge.svg )] ( https://github.com/cweill/gotests/actions ) [ ![ Coverage Status] ( https://coveralls.io/repos/github/cweill/gotests/badge.svg?branch=master )] ( https://coveralls.io/github/cweill/gotests?branch=master ) [ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/cweill/gotests )] ( https://goreportcard.com/report/github.com/cweill/gotests )
22
33` gotests ` makes writing Go tests easy. It's a Golang commandline tool that generates [ table driven tests] ( https://github.com/golang/go/wiki/TableDrivenTests ) based on its target source files' function and method signatures. Any new dependencies in the test files are automatically imported.
44
You can’t perform that action at this time.
0 commit comments