33 lines
972 B
Bash
Executable File
33 lines
972 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#python3 -m pip install -r requirements.txt
|
|
if [ ! -d _sandbox ]; then
|
|
echo We need to create it...
|
|
git clone https://github.com/algorand/sandbox.git _sandbox
|
|
cd _sandbox
|
|
git checkout 4e613dcff61523693c18584894ee6de9bd469ec1
|
|
cd ..
|
|
fi
|
|
|
|
sed -i -e 's@export ALGOD_URL=""@export ALGOD_URL="https://github.com/algorand/go-algorand"@' \
|
|
-e 's/export ALGOD_CHANNEL="stable"/export ALGOD_CHANNEL=""/' \
|
|
-e 's/export ALGOD_BRANCH=""/export ALGOD_BRANCH="v3.16.2-stable"/' \
|
|
-e 's/export INDEXER_BRANCH="master"/export INDEXER_BRANCH="2.15.4"/' \
|
|
-e 's/export INDEXER_ENABLE_ALL_PARAMETERS="false"/export INDEXER_ENABLE_ALL_PARAMETERS="true"/' _sandbox/config.dev
|
|
|
|
cd _sandbox
|
|
./sandbox clean
|
|
./sandbox up -v dev
|
|
cd ..
|
|
echo running the tests...
|
|
cd test
|
|
python3 test.py
|
|
rv=$?
|
|
echo rv = $rv
|
|
if [ $rv -ne 0 ]; then
|
|
echo tests in test.py failed
|
|
exit 1
|
|
fi
|
|
echo bringing the sandbox down...
|
|
cd ../_sandbox
|
|
./sandbox down
|