Merge pull request #1533 from jawshooah/fix-tests

tests: ignore test files in test/vendor/bundle
This commit is contained in:
Mike McQuaid 2016-11-18 08:08:47 +00:00 committed by GitHub
commit 1f956a6b75

View File

@ -46,6 +46,7 @@ module Homebrew
files = Dir.glob("test/**/*_test.rb")
.reject { |p| !OS.mac? && p.start_with?("test/os/mac/") }
.reject { |p| p.start_with?("test/vendor/bundle/") }
opts = []
opts << "--serialize-stdout" if ENV["CI"]