network-testing-codex/Makefile

9 lines
134 B
Makefile
Raw Normal View History

2023-02-16 16:52:40 +00:00
# Create a makefile that runs all the tests in tests/
SRC = $(wildcard tests/*.go)
all:
go test $(SRC)
verbose:
go test -v $(SRC)