diff --git a/.github/workflows/python-api-client-tests.yaml b/.github/workflows/python-api-client-tests.yaml index 0566f6e725..c063ff6ff3 100644 --- a/.github/workflows/python-api-client-tests.yaml +++ b/.github/workflows/python-api-client-tests.yaml @@ -121,9 +121,6 @@ jobs: cargo build --bin golem-cli - name: Initialize Golem Configuration - env: - GOLEM_INIT_MODE: postgres - GOLEM_NON_INTERACTIVE: "true" run: | # Create .env file with custom configuration cat << EOF > .env @@ -146,12 +143,10 @@ jobs: WORKER_EXECUTOR_HTTP_PORT=${{ env.WORKER_EXECUTOR_HTTP_PORT }} WORKER_EXECUTOR_GRPC_PORT=${{ env.WORKER_EXECUTOR_GRPC_PORT }} GOLEM_ROUTER_COMPONENT_MAX_SIZE_ALLOWED=${{ env.GOLEM_ROUTER_COMPONENT_MAX_SIZE_ALLOWED }} - GOLEM_INIT_MODE=postgres - GOLEM_NON_INTERACTIVE=true EOF - # Run golem-cli init - cargo run --bin golem-cli init + # Run golem-cli init with simulated input + yes "2" | cargo run --bin golem-cli init - name: Start Golem Server run: |