aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions
diff options
context:
space:
mode:
authorMike McQuaid2012-11-10 06:17:35 +0000
committerMike McQuaid2012-11-10 06:18:34 +0000
commite39cfa3e2900a4e6cc2aee2cee20be56a73cc2a8 (patch)
treecb19bcb58e7f6bd913b43aef5d3e529d6e5f46bf /Library/Contributions
parent2f5b241e4d64e1927c088c7be6cf29204e78f8c0 (diff)
downloadhomebrew-e39cfa3e2900a4e6cc2aee2cee20be56a73cc2a8.tar.bz2
brew-test-bot: add skip cleanup, setup options.
Diffstat (limited to 'Library/Contributions')
-rwxr-xr-xLibrary/Contributions/cmds/brew-test-bot.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Contributions/cmds/brew-test-bot.rb b/Library/Contributions/cmds/brew-test-bot.rb
index 887ad82c5..047546583 100755
--- a/Library/Contributions/cmds/brew-test-bot.rb
+++ b/Library/Contributions/cmds/brew-test-bot.rb
@@ -254,14 +254,14 @@ class Test
def self.run url
test = new url
- test.cleanup
+ test.cleanup unless ARGV.include? "--skip-cleanup"
test.download
- test.setup
+ test.setup unless ARGV.include? "--skip-setup"
test.formulae.each do |f|
test.formula f
end
test.homebrew if test.core_changed
- test.cleanup
+ test.cleanup unless ARGV.include? "--skip-cleanup"
test.check_results
end