aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2012-11-10 06:17:35 +0000
committerMike McQuaid2012-11-10 06:18:34 +0000
commit925a9572c927ee6288dd96317054874a880c1be8 (patch)
tree68c779b2e6ed0c5264b34d15f1832bbac6656f1d /Library
parent8d7be8c0b4bf58702fca9c5d1c3d95c7e3285190 (diff)
downloadbrew-925a9572c927ee6288dd96317054874a880c1be8.tar.bz2
brew-test-bot: add skip cleanup, setup options.
Diffstat (limited to 'Library')
-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