Skip to content

Commit

Permalink
cI: grpc is not included in the all gem yet
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-kazmierczak committed Dec 13, 2024
1 parent 0521c5b commit 9890699
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion instrumentation/all/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ group :test do
.sort
.each { |dir| gem "opentelemetry-helpers-#{dir}", path: "../../helpers/#{dir}" }

excluded_instrumentations = %w[. .. all grpc]
Dir.entries('../')
.select { |entry| File.directory?(File.join('../', entry)) }
.reject { |entry| %w[. .. all].include?(entry) } # rubocop:disable Performance/CollectionLiteralInLoop
.reject { |entry| excluded_instrumentations.include?(entry) }
.sort
.each { |dir| gem "opentelemetry-instrumentation-#{dir}", path: "../#{dir}" }
end

0 comments on commit 9890699

Please sign in to comment.