summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <[email protected]>2024-11-08 19:36:27 +0100
committerHiroshi SHIBATA <[email protected]>2024-11-14 11:21:39 +0900
commit4fc82519a0a60d6f863764c9f2b355f2054ea1f5 (patch)
treed0576808a757fde1f4e71f241266b7ab855bb1b9
parenta0f1f161452e9a8c3d017ffbfce5744c775b668f (diff)
[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
-rw-r--r--spec/bundler/commands/viz_spec.rb2
1 files changed, 1 insertions, 1 deletions
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