network-testing-codex/Makefile

9 lines
134 B
Makefile

# Create a makefile that runs all the tests in tests/
SRC = $(wildcard tests/*.go)
all:
go test $(SRC)
verbose:
go test -v $(SRC)