Compare commits

...

1 Commits

Author SHA1 Message Date
William Banfield
6c94e3d412 test: install abci-cli when running test/app/test.sh 2021-08-17 11:16:38 -04:00

View File

@@ -10,6 +10,12 @@ set -ex
export PATH="$GOBIN:$PATH"
export TMHOME=$HOME/.tendermint_app
MODULEROOT=`go env | grep GOMOD= | sed "s/GOMOD=\"\(.*\)go.mod\"/\1/g"`
# abci-cli must be on the path for these tests to run.
if [ ! $(which abci-cli) ]; then
go install $MODULEROOT/abci/cmd/abci-cli
fi
function kvstore_over_socket(){
rm -rf $TMHOME