Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .buildkite/functions/imports.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if [[ -z $es_node_name ]]; then

fi

export script_path=$(dirname $(realpath -s $0))
export script_path=$(dirname $(realpath $0))
source $script_path/functions/cleanup.sh
source $script_path/functions/wait-for-container.sh
trap "cleanup_trap ${network_name}" EXIT
Expand Down
2 changes: 1 addition & 1 deletion .buildkite/run-elasticsearch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# - Moved ELASTIC_PASSWORD and xpack.security.enabled to the base arguments for "Security On by default"
# - Use https only when TEST_SUITE is "platinum", when "free" use http

script_path=$(dirname $(realpath -s $0))
script_path=$(dirname $(realpath $0))
source $script_path/functions/imports.sh
set -euo pipefail

Expand Down
2 changes: 1 addition & 1 deletion .buildkite/run-tests
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export TEST_SUITE="${TEST_SUITE:=platinum}"
export PYTHON_VERSION="${PYTHON_VERSION:=3.13}"
export PYTHON_CONNECTION_CLASS="${PYTHON_CONNECTION_CLASS:=urllib3}"

script_path=$(dirname $(realpath -s $0))
script_path=$(dirname $(realpath $0))
source $script_path/functions/imports.sh
set -euo pipefail

Expand Down