aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Hagins2016-11-17 19:21:05 -0500
committerJosh Hagins2016-11-17 19:21:05 -0500
commit0a7307de6412ddc566cdcb5ab343a9bb16bb2b88 (patch)
tree0a8fdff36c71ccc1bbbccd8569663d43538f6c35
parentd536070e0a2b701c9bc51d47659fcfe098838091 (diff)
downloadbrew-0a7307de6412ddc566cdcb5ab343a9bb16bb2b88.tar.bz2
tests: ignore test files in test/vendor/bundle
-rw-r--r--Library/Homebrew/dev-cmd/tests.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/dev-cmd/tests.rb b/Library/Homebrew/dev-cmd/tests.rb
index c032b3437..b4f3c2d40 100644
--- a/Library/Homebrew/dev-cmd/tests.rb
+++ b/Library/Homebrew/dev-cmd/tests.rb
@@ -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"]