8bf8d34376
* Update test scripts and CI * Update timeout * Update test-helper * fix issue for staking test * fix bug in test helper * reduce block time * Update test cases * use truffle 5.4.14 as global * remove two checks * reduce block time to 150ms * fix patches paths * Update test scripts Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
22 lines
503 B
Bash
Executable File
22 lines
503 B
Bash
Executable File
#!/bin/bash
|
|
export GOPATH=~/go
|
|
export PATH=$PATH:$GOPATH/bin
|
|
|
|
# remove existing daemon
|
|
rm -rf ~/.ethermintd
|
|
|
|
# build ethermint binary
|
|
make install
|
|
|
|
cd tests/solidity
|
|
|
|
if command -v yarn &> /dev/null; then
|
|
yarn install
|
|
else
|
|
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
|
|
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
|
|
sudo apt update && sudo apt install yarn
|
|
yarn install
|
|
fi
|
|
|
|
yarn test --network ethermint $@ |