aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions
diff options
context:
space:
mode:
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