mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 03:32:54 -06:00
9 lines
125 B
Makefile
9 lines
125 B
Makefile
TEST?=./...
|
|
|
|
test:
|
|
go test $(TEST) $(TESTARGS) -timeout=3s -parallel=4
|
|
go vet $(TEST)
|
|
go test $(TEST) -race
|
|
|
|
.PHONY: test
|