Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mdw-go/go-test-fmt
A library and command-line tool to format output of `go test ./...`.
https://github.com/mdw-go/go-test-fmt
Last synced: 14 days ago
JSON representation
A library and command-line tool to format output of `go test ./...`.
- Host: GitHub
- URL: https://github.com/mdw-go/go-test-fmt
- Owner: mdw-go
- License: mit
- Created: 2024-07-26T21:20:41.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-19T15:22:14.000Z (30 days ago)
- Last Synced: 2024-10-20T14:53:49.903Z (29 days ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# go-test-fmt
A library and command-line tool to format output of `go test ./...`.
---
Example output:
```
github.com/mdw-go/go-collections on git main [!]
$ make | go-test-fmt
go version go1.23rc1 darwin/arm64
go fmt ./...
go mod tidy
go test -cover -count=1 -timeout=1s -race ./...
- github.com/mdw-go/collections/internal/should [missing test files]
ok github.com/mdw-go/collections/list 100.0% 0.279s
ok github.com/mdw-go/collections/queue 100.0% 0.464s
ok github.com/mdw-go/collections/set 100.0% 0.641s
ok github.com/mdw-go/collections/stack 100.0% 0.836s
```