diff options
| author | Mike McQuaid | 2015-03-20 21:32:01 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2015-03-23 13:30:55 +0000 |
| commit | f99a5aafb1701f1dc8e8dbb4237793cb0e507fb2 (patch) | |
| tree | 594b3d95e7b678fa66f61135d62453540a0ae977 /Library | |
| parent | 2738f88765e5940700e2029839f10bc0bcb76bc3 (diff) | |
| download | homebrew-f99a5aafb1701f1dc8e8dbb4237793cb0e507fb2.tar.bz2 | |
test-bot: allow skipping homebrew step.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/test-bot.rb | 2 |
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 |
