From 4fc82519a0a60d6f863764c9f2b355f2054ea1f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 8 Nov 2024 19:36:27 +0100 Subject: [PATCH] [rubygems/rubygems] Make sure `bundle viz` specs are actually run These are marked as realworld, but the realworld workflow file does not install graphviz, so the specs are actually skipped. These are not actually realworld, so remove that tag. Now they'll be run together with the reset of specs in the standard workflow file, which does install `graphviz`. https://github.com/rubygems/rubygems/commit/e865fcaa22 --- spec/bundler/commands/viz_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/bundler/commands/viz_spec.rb b/spec/bundler/commands/viz_spec.rb index c26e3c81ed..712ded4bc4 100644 --- a/spec/bundler/commands/viz_spec.rb +++ b/spec/bundler/commands/viz_spec.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -RSpec.describe "bundle viz", bundler: "< 3", if: Bundler.which("dot"), realworld: true do +RSpec.describe "bundle viz", bundler: "< 3", if: Bundler.which("dot") do before do realworld_system_gems "ruby-graphviz --version 1.2.5" end