mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-06 17:57:51 +00:00
This switches over to ginkgo/gomega for tests, which makes writing certain tests easier/more fluent in the future.
11 lines
154 B
Makefile
11 lines
154 B
Makefile
default: test
|
|
|
|
test: *.go
|
|
go test -v -race ./...
|
|
|
|
fmt:
|
|
gofmt -w .
|
|
|
|
# Run the test in an isolated environment.
|
|
fulltest:
|
|
docker build -t hpcloud/tail .
|