ci-report
commandThis package is not in the latest version of its module.
Details
Validgo.mod file
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
Redistributable license
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
Tagged version
Modules with tagged versions give importers more predictable builds.
Stable version
When a project reaches major version v1 it is considered stable.
- Learn more about best practices
Repository
Links
README¶
ci-report
This program generates a CI report from thegotests.json
generated bygo test -json
(we usegotestsum
as a frontend).
Limitations
We won't generate any report/stats for tests that weren't run. To find all existing tests, we could use:go test ./... -list=. -json
, but the time it takes is probably not worth it. Usually most tests will run, even if there are errors and we're using-failfast
.
Misc
The scriptfetch_stats_from_ci.sh
can be used to fetch historical stats from CI, e.g. for development or analysis.
Documentation¶
There is no documentation for this package.