From e23540c63d0511cc344181bae32f416dcac193bb Mon Sep 17 00:00:00 2001 From: Parker Rule Date: Fri, 28 Aug 2026 10:51:23 -0400 Subject: [PATCH] test(cli): allow more time for service startup --- .github/workflows/_integration_test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/_integration_test.yml b/.github/workflows/_integration_test.yml index bdc100632..610f25521 100644 --- a/.github/workflows/_integration_test.yml +++ b/.github/workflows/_integration_test.yml @@ -76,9 +76,9 @@ jobs: if [ -f ../.env ]; then echo "LANGSMITH_API_KEY=${{ secrets.LANGSMITH_API_KEY }}" >> ../.env; fi # Run the integration test using the built tag REPO_ROOT=$(git rev-parse --show-toplevel) - timeout 60 python "$REPO_ROOT/.github/scripts/run_langgraph_cli_test.py" -t ${{ matrix.example.tag }} + timeout 90 python "$REPO_ROOT/.github/scripts/run_langgraph_cli_test.py" -t ${{ matrix.example.tag }} if [ "${{ matrix.example.name }}" = "A" ]; then - timeout 60 python "$REPO_ROOT/.github/scripts/run_langgraph_cli_test.py" -t ${{ matrix.example.tag }}-flat + timeout 90 python "$REPO_ROOT/.github/scripts/run_langgraph_cli_test.py" -t ${{ matrix.example.tag }}-flat fi - name: Build JS service @@ -106,7 +106,7 @@ jobs: run: | cp apps/agent/.env.example apps/agent/.env echo "LANGSMITH_API_KEY=${{ secrets.LANGSMITH_API_KEY }}" >> apps/agent/.env - timeout 60 python ../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-g -c apps/agent/langgraph.json + timeout 90 python ../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-g -c apps/agent/langgraph.json - name: Build prerelease reqs service if: ${{ (steps.changed-files.outputs.all || github.event_name == 'workflow_dispatch') &&matrix.example.name == 'A' }} @@ -121,7 +121,7 @@ jobs: run: | cp ../.env.example .env echo "LANGSMITH_API_KEY=${{ secrets.LANGSMITH_API_KEY }}" >> .env - timeout 60 python ../../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-h + timeout 90 python ../../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-h echo "Finished starting up langgraph-test-h" LANGGRAPH_VERSION=$(docker run --rm --entrypoint "" langgraph-test-h python -c "import sys; from importlib.metadata import version; v = version('langgraph'); print(v);") if [ "$LANGGRAPH_VERSION" != "1.1.5" ]; then @@ -158,7 +158,7 @@ jobs: run: | cp .env.example .env echo "LANGSMITH_API_KEY=${{ secrets.LANGSMITH_API_KEY }}" >> .env - timeout 60 python ../../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-uv-simple + timeout 90 python ../../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-uv-simple - name: Build uv monorepo service if: ${{ (steps.changed-files.outputs.all || github.event_name == 'workflow_dispatch') &&matrix.example.name == 'A' }} @@ -173,4 +173,4 @@ jobs: run: | cp .env.example .env echo "LANGSMITH_API_KEY=${{ secrets.LANGSMITH_API_KEY }}" >> .env - timeout 60 python ../../../../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-uv-monorepo + timeout 90 python ../../../../../../.github/scripts/run_langgraph_cli_test.py -t langgraph-test-uv-monorepo