Skip to content

Commit

Permalink
handle CI env
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBger committed Oct 18, 2024
1 parent 310030a commit ccc86ad
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#!/usr/bin/env bash
set -euxo pipefail

LOCAL = $TEST_LOCAL_CODEGEN
listen_address=
if [[ "$LOCAL" == "true" ]]; then
if [[ $TEST_LOCAL_CODEGEN == "true" ]]; then
if [[ -n "${CI:-}" ]]; then
# Codegen address when running test
listen_address="http://172.17.0.1:9000"
Expand Down

0 comments on commit ccc86ad

Please sign in to comment.