Skip to content

Tests: Requires ostruct in OTel test #98

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .buildkite/run-client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export RUBY_VERSION=${RUBY_VERSION:-3.2}
export TRANSPORT_VERSION=${TRANSPORT_VERSION:-8}
export RUBY_SOURCE=${RUBY_SOURCE:-ruby}

echo "--- :ruby: Building Docker image"
echo "--- :docker: :ruby: Building Docker image"
docker build \
--file $script_path/Dockerfile \
--tag elastic/elasticsearch-ruby \
Expand All @@ -17,7 +17,7 @@ docker build \
--build-arg RUBY_SOURCE=$RUBY_SOURCE \
.

echo "--- :ruby: Running $TEST_SUITE tests"
echo "--- :ruby: Running tests"

docker run \
-e "ELASTIC_USER=elastic" \
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ gem 'debug', '>= 1.0.0' unless defined?(JRUBY_VERSION)
gem 'elasticsearch-test-runner'
gem 'faraday-net_http_persistent'
gem 'opentelemetry-sdk', require: false
gem 'ostruct'
gem 'rake'
gem 'rspec'
gem 'yard'
1 change: 1 addition & 0 deletions spec/api/perform_request_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

require 'spec_helper'
require 'elastic-transport'
require 'ostruct'

describe 'Perform request args' do
specs = [
Expand Down
Loading