From 245441e1e8dec32ee3f920206654c47645661a83 Mon Sep 17 00:00:00 2001 From: Mike McQuaid <mike@mikemcquaid.com> Date: Mon, 4 Jul 2016 17:08:17 +0100 Subject: [PATCH] test-bot: fix args, tap before official-cmd-taps. --- Library/Homebrew/dev-cmd/test-bot.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/dev-cmd/test-bot.rb b/Library/Homebrew/dev-cmd/test-bot.rb index 9e55fbfa63..72b619f86e 100644 --- a/Library/Homebrew/dev-cmd/test-bot.rb +++ b/Library/Homebrew/dev-cmd/test-bot.rb @@ -654,12 +654,14 @@ module Homebrew ruby_two = RUBY_VERSION.split(".").first.to_i >= 2 if @tap.nil? - tests_args = [] + test "brew", "tap", "caskroom/cask" + test "brew", "tap", "homebrew/bundle" + test "brew", "tap", "homebrew/services" + tests_args = ["--official-cmd-taps"] tests_args << "--coverage" if ruby_two && ENV["TRAVIS"] test "brew", "tests", *tests_args test "brew", "tests", "--no-compat" test "brew", "readall", "--syntax" - test "brew", "tests", "--official-cmd-taps" else test "brew", "readall", "--aliases", @tap.name end -- GitLab