Skip to content

Commit

Permalink
💚 Pend spec failure
Browse files Browse the repository at this point in the history
- Possibly due to bundler issue on MRI and JRuby engines
- rubygems/rubygems#8518
  • Loading branch information
pboling committed Feb 24, 2025
1 parent df2a1e9 commit 0a02c86
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions appraisal.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,5 @@ Gem::Specification.new do |s|

s.add_development_dependency("activesupport", ">= 3.2.21")
s.add_development_dependency("rspec", "~> 3.13")
s.add_development_dependency("rspec-pending_for", "~> 0.1", ">= 0.1.17")
end
5 changes: 4 additions & 1 deletion spec/acceptance/bundle_without_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

RSpec.describe "Bundle without group" do
it "config set --local without group is honored by Bundler" do
# pending "config set --local without group support seems broken, see: https://github.com/rubygems/rubygems/issues/8518"
reason = "config set --local without group support seems broken, see: https://github.com/rubygems/rubygems/issues/8518"
# Somehow this spec passes on truffleruby *only*!!
pending_for(:engine => "ruby", :reason => reason)
pending_for(:engine => "jruby", :reason => reason)
build_gems %w[pancake orange_juice waffle coffee sausage soda]

build_gemfile <<-GEMFILE.strip_heredoc.rstrip
Expand Down
1 change: 1 addition & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

# External Libraries
require "active_support/core_ext/string/strip"
require "rspec/pending_for"

# This library
require "support/dependency_helpers"
Expand Down

0 comments on commit 0a02c86

Please sign in to comment.