makefile help command
parent
1b40283f69
commit
d51de8f3bc
10
Makefile
10
Makefile
|
@ -1,7 +1,15 @@
|
||||||
SHELL = /bin/bash
|
SHELL = /bin/bash
|
||||||
.DEFAULT_GOAL := serve
|
.DEFAULT_GOAL := test
|
||||||
.PHONY: 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:
|
test:
|
||||||
./tests/test_locking_funds.sh
|
./tests/test_locking_funds.sh
|
||||||
./tests/test_auction_flow.sh
|
./tests/test_auction_flow.sh
|
||||||
|
|
Loading…
Reference in New Issue