aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2015-03-20 21:32:01 +0000
committerMike McQuaid2015-03-23 13:30:55 +0000
commitf99a5aafb1701f1dc8e8dbb4237793cb0e507fb2 (patch)
tree594b3d95e7b678fa66f61135d62453540a0ae977
parent2738f88765e5940700e2029839f10bc0bcb76bc3 (diff)
downloadhomebrew-f99a5aafb1701f1dc8e8dbb4237793cb0e507fb2.tar.bz2
test-bot: allow skipping homebrew step.
-rw-r--r--Library/Homebrew/cmd/test-bot.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index 5a784188d..683c6de18 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -7,6 +7,7 @@
# --cleanup: Clean the Homebrew directory. Very dangerous. Use with care.
# --clean-cache: Remove all cached downloads. Use with care.
# --skip-setup: Don't check the local system is setup correctly.
+# --skip-homebrew: Don't check Homebrew's files and tests are all valid.
# --junit: Generate a JUnit XML test results file.
# --email: Generate an email subject file.
# --no-bottle: Run brew install without --build-bottle
@@ -504,6 +505,7 @@ module Homebrew
def homebrew
@category = __method__
+ return if ARGV.include? "--skip-homebrew"
test "brew", "tests"
readall_args = []
readall_args << "--syntax" if MacOS.version >= :mavericks