20 lines
372 B
Makefile
20 lines
372 B
Makefile
SHELL = /bin/bash
|
|
.DEFAULT_GOAL := test
|
|
.PHONY: test
|
|
|
|
help:
|
|
@echo '--------------'
|
|
@echo '* Help *'
|
|
@echo '--------------'
|
|
@echo
|
|
@echo "test: run all integration tests on served chain"
|
|
@echo "utest: run all inline Go unit tests"
|
|
|
|
test:
|
|
./tests/test_locking_funds.sh
|
|
./tests/test_auction_flow.sh
|
|
./tests/test_auction_flow_verified.sh
|
|
|
|
utest:
|
|
go test ./...
|