aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2013-04-26 22:32:09 +0100
committerMike McQuaid2013-04-26 22:32:26 +0100
commite8b653d097de306d5211c15b2114cd0e3cef1616 (patch)
tree27d437d523a5922d4981bea984c2c88ef8d13243 /Library
parent94a944aa3fc15db0866bebb919189a933dc2715f (diff)
downloadhomebrew-e8b653d097de306d5211c15b2114cd0e3cef1616.tar.bz2
brew-tests: install deps before tests.
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/brew-tests.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/cmd/brew-tests.rb b/Library/Contributions/cmd/brew-tests.rb
index 0a2fb78e7..12c62ee6a 100755
--- a/Library/Contributions/cmd/brew-tests.rb
+++ b/Library/Contributions/cmd/brew-tests.rb
@@ -2,7 +2,7 @@ module Homebrew extend self
def tests
(HOMEBREW_LIBRARY/'Homebrew/test').cd do
ENV['TESTOPTS'] = '-v' if ARGV.verbose?
- system "rake", "test"
+ system "rake", "deps", "test"
exit $?.exitstatus
end
end