2022-09-02 13:48:12 -07:00
|
|
|
SHELL = /bin/bash
|
2022-09-21 13:31:01 -07:00
|
|
|
.DEFAULT_GOAL := test
|
2022-09-02 13:48:12 -07:00
|
|
|
.PHONY: test
|
|
|
|
|
2022-09-21 13:31:01 -07:00
|
|
|
help:
|
|
|
|
@echo '--------------'
|
|
|
|
@echo '* Help *'
|
|
|
|
@echo '--------------'
|
|
|
|
@echo
|
|
|
|
@echo "test: run all integration tests on served chain"
|
|
|
|
@echo "utest: run all inline Go unit tests"
|
|
|
|
|
2022-09-02 13:48:12 -07:00
|
|
|
test:
|
2022-09-08 17:10:04 -07:00
|
|
|
./tests/test_locking_funds.sh
|
2022-09-02 13:48:12 -07:00
|
|
|
./tests/test_auction_flow.sh
|
2022-09-13 22:43:17 -07:00
|
|
|
./tests/test_auction_flow_verified.sh
|
2022-09-04 17:42:28 -07:00
|
|
|
|
|
|
|
utest:
|
|
|
|
go test ./...
|