diff options
author | David RodrÃguez <[email protected]> | 2024-11-08 19:36:27 +0100 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-11-14 11:21:39 +0900 |
commit | 4fc82519a0a60d6f863764c9f2b355f2054ea1f5 (patch) | |
tree | d0576808a757fde1f4e71f241266b7ab855bb1b9 | |
parent | a0f1f161452e9a8c3d017ffbfce5744c775b668f (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.rb | 2 |
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 |