From 21c502e05fca16948329c600fcb94fcc74243e0b Mon Sep 17 00:00:00 2001 From: Markus Reiter <me@reitermark.us> Date: Mon, 24 Aug 2020 08:31:00 +0200 Subject: [PATCH] Remove unused metadata from `bundle` spec. --- Library/Homebrew/test/cmd/bundle_spec.rb | 2 +- Library/Homebrew/test/spec_helper.rb | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Library/Homebrew/test/cmd/bundle_spec.rb b/Library/Homebrew/test/cmd/bundle_spec.rb index 61d7fb2251..63bb8f509f 100644 --- a/Library/Homebrew/test/cmd/bundle_spec.rb +++ b/Library/Homebrew/test/cmd/bundle_spec.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -describe "brew bundle", :integration_test, :needs_test_cmd_taps do +describe "brew bundle", :integration_test do describe "check" do it "checks if a Brewfile's dependencies are satisfied", :needs_network do setup_remote_tap "homebrew/bundle" diff --git a/Library/Homebrew/test/spec_helper.rb b/Library/Homebrew/test/spec_helper.rb index 1aad194f5e..f8a848e34f 100644 --- a/Library/Homebrew/test/spec_helper.rb +++ b/Library/Homebrew/test/spec_helper.rb @@ -97,10 +97,6 @@ RSpec.configure do |config| skip "Requires compatibility layer." if ENV["HOMEBREW_NO_COMPAT"] end - config.before(:each, :needs_official_cmd_taps) do - skip "Needs official command Taps." unless ENV["HOMEBREW_TEST_OFFICIAL_CMD_TAPS"] - end - config.before(:each, :needs_linux) do skip "Not on Linux." unless OS.linux? end -- GitLab