Update dependencies

This commit is contained in:
bluepython508
2024-11-01 17:33:34 +00:00
parent 033ac0b400
commit 5cdfab398d
3596 changed files with 1033483 additions and 259 deletions

26
vendor/github.com/tcnksm/go-httpstat/Makefile generated vendored Normal file
View File

@@ -0,0 +1,26 @@
PACKAGES = $(shell go list ./... | grep -v '/vendor/')
default: test
test-all: vet lint test
test:
go test -v -parallel=4 ${PACKAGES}
test-race:
go test -v -race ${PACKAGES}
vet:
go vet ${PACKAGES}
lint:
@go get github.com/golang/lint/golint
go list ./... | grep -v vendor | xargs -n1 golint
cover:
@go get golang.org/x/tools/cmd/cover
go test -coverprofile=cover.out
go tool cover -html cover.out
rm cover.out
.PHONY: test test-race vet lint cover