Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add list of projects that use gotestsum to the README #319

Merged
merged 1 commit into from
Apr 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

`gotestsum` runs tests using `go test -json`, prints formatted test output, and a summary of the test run.
It is designed to work well for both local development, and for automation like CI.
`gotestsum` is [used by](#who-uses-gotestsum) some of the most popular Go projects.

## Install

Expand Down Expand Up @@ -412,6 +413,32 @@ Note that [delve] must be installed in order to use debug (`d`).
gotestsum --watch --format testname
```

## Who uses gotestsum?

The projects below use (or have used) gotestsum.

* [kubernetes](https://github.com/kubernetes/kubernetes/blob/master/hack/tools/tools.go)
* [moby](https://github.com/moby/moby/blob/master/hack/test/unit) (aka Docker)
* [etcd](https://github.com/etcd-io/etcd/blob/main/tools/mod/tools.go)
* [hashicorp/vault](https://github.com/hashicorp/vault/blob/main/tools/tools.go)
* [hashicorp/consul](https://github.com/hashicorp/consul/blob/main/.github/workflows/reusable-unit.yml)
* [minikube](https://github.com/kubernetes/minikube/blob/master/hack/jenkins/common.ps1)
* [influxdb](https://github.com/influxdata/influxdb/blob/master/scripts/ci/build-tests.sh)
* [pulumi](https://github.com/pulumi/pulumi/blob/master/.github/workflows/ci.yml)
* [grafana/k6](https://github.com/grafana/k6/issues/1986#issuecomment-996625874)
* [grafana/loki](https://github.com/grafana/loki/blob/main/loki-build-image/Dockerfile)
* [telegraf](https://github.com/influxdata/telegraf/blob/master/.circleci/config.yml)
* [containerd](https://github.com/containerd/containerd/blob/main/.cirrus.yml)
* [linkerd2](https://github.com/linkerd/linkerd2/blob/main/justfile)
* [elastic/go-elasticsearch](https://github.com/elastic/go-elasticsearch/blob/main/Makefile)
* [microsoft/hcsshim](https://github.com/microsoft/hcsshim/blob/main/.github/workflows/ci.yml)
* [pingcap/tidb](https://github.com/pingcap/tidb/blob/master/Makefile)
* [dex](https://github.com/dexidp/dex/blob/master/Makefile)
* [coder](https://github.com/coder/coder/blob/main/Makefile)
* [docker/cli](https://github.com/docker/cli/blob/master/Makefile)

Please open a GitHub issue or pull request to add or remove projects from this list.

## Development

[![Godoc](https://godoc.org/gotest.tools/gotestsum?status.svg)](https://pkg.go.dev/gotest.tools/gotestsum?tab=subdirectories)
Expand Down