diff options
author | Takashi Kokubun <takashikkbn@gmail.com> | 2024-06-03 16:09:02 -0700 |
---|---|---|
committer | Takashi Kokubun <takashikkbn@gmail.com> | 2024-06-03 16:09:02 -0700 |
commit | a8f5284045e3aba1b45691142e5c01bf1d24d519 (patch) | |
tree | e1ad27b49d74b8f9b4ddafdf7ac16d75f40c2435 | |
parent | 89ef1392f8966735964b38335b6e8b6613450de9 (diff) |
Skip failing Bundler specs for now
-rw-r--r-- | spec/bundler/commands/info_spec.rb | 1 | ||||
-rw-r--r-- | spec/bundler/commands/show_spec.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/spec/bundler/commands/info_spec.rb b/spec/bundler/commands/info_spec.rb index a5a09bc147..0fba619987 100644 --- a/spec/bundler/commands/info_spec.rb +++ b/spec/bundler/commands/info_spec.rb @@ -208,6 +208,7 @@ RSpec.describe "bundle info" do context "with a valid regexp for gem name" do it "presents alternatives", :readline do + skip "fails on ruby/ruby CI" # https://github.com/rubygems/rubygems/issues/7713 install_gemfile <<-G source "#{file_uri_for(gem_repo1)}" gem "rack" diff --git a/spec/bundler/commands/show_spec.rb b/spec/bundler/commands/show_spec.rb index 2b6d4d2d00..0628358f95 100644 --- a/spec/bundler/commands/show_spec.rb +++ b/spec/bundler/commands/show_spec.rb @@ -166,6 +166,7 @@ RSpec.describe "bundle show", bundler: "< 3" do context "with a valid regexp for gem name" do it "presents alternatives", :readline do + skip "fails on ruby/ruby CI" # https://github.com/rubygems/rubygems/issues/7713 install_gemfile <<-G source "#{file_uri_for(gem_repo1)}" gem "rack" |