mirror of
https://github.com/logos-storage/logos-storage-network-testing.git
synced 2026-01-02 05:23:08 +00:00
9 lines
134 B
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)
|