brew-tests: install deps before tests.

This commit is contained in:
Mike McQuaid 2013-04-26 22:32:09 +01:00
parent 17667c03d0
commit 7b7d4d2f1b

View File

@ -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