Skip to content

Commit 92170b5

Browse files
committed
fix(testing_setup): Update local network and enable missing services
1 parent cad130e commit 92170b5

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

setup-test-network.sh

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ pwd
99
if [ ! -d "local-network" ]; then
1010
git clone https://github.com/edgeandnode/local-network.git
1111
cd local-network
12-
git checkout 0af4bbcd851b365715e11ac68b29f263204353fb
12+
# Chekout to a specific commit that is known to work
13+
git checkout 006e2511d4b8262ff14ff6cd5e1b75f0663dee98
1314
cd ..
1415
fi
1516

@@ -64,16 +65,17 @@ docker compose up -d indexer-agent
6465
echo "Waiting for indexer-agent to be healthy..."
6566
timeout 300 bash -c 'until docker ps | grep indexer-agent | grep -q healthy; do sleep 5; done'
6667

67-
# subgraph-deploy is not needed for our testing suite
68-
# echo "Starting subgraph deployment..."
69-
# docker compose up -d subgraph-deploy
70-
# sleep 30 # Give time for subgraphs to deploy
68+
echo "Starting subgraph deployment..."
69+
docker compose up --build -d subgraph-deploy
70+
sleep 10 # Give time for subgraphs to deploy
7171

7272
echo "Starting TAP services..."
73+
echo "Starting tap-aggregator..."
7374
docker compose up -d tap-aggregator
74-
# sleep 10
75+
sleep 10
7576
# tap-scrow-manager requires subgraph-deploy
76-
# docker compose up -d tap-escrow-manager
77+
echo "Starting tap-scrow-manager..."
78+
docker compose up -d tap-escrow-manager
7779
sleep 10
7880
# Phase 4: Try a simple escrowAccounts query to see if the schema is accessible
7981
echo "Testing escrowAccounts query..."

0 commit comments

Comments
 (0)