From f54524e040cde9a6d5f2fc67f5d32494812a2e48 Mon Sep 17 00:00:00 2001 From: Andrew Gouin Date: Mon, 28 Oct 2024 20:32:00 -0600 Subject: [PATCH] Fix test --- .github/workflows/integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 7b0c265..874ed93 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -34,11 +34,11 @@ jobs: - name: Build, setup, and start background gcosmos run: | make build - make start & + make testnet-start & - name: Verify gcosmos is running run: | - sleep 5 + sleep 10 RESP=$(curl -s http://127.0.0.1:26657/blocks/watermark --max-time 5 | jq .VotingHeight) if [[ "$RESP" -le 1 ]]; then echo "Failed to start gcosmos"