diff options
| author | Mike McQuaid | 2016-09-13 11:11:32 +0100 |
|---|---|---|
| committer | GitHub | 2016-09-13 11:11:32 +0100 |
| commit | 8e9a4b6e585dbc08f500f352dc3ad3527d46844a (patch) | |
| tree | 46c481b4b3ef82c0b892ca0d58d9f69397aefdcf | |
| parent | 3d3a03f75a0b3fe30176b79593d79cf5555a5b33 (diff) | |
| parent | 0f03506adc0f8123194dcaab68a2cf191d02dc6b (diff) | |
| download | brew-8e9a4b6e585dbc08f500f352dc3ad3527d46844a.tar.bz2 | |
Merge pull request #952 from MikeMcQuaid/test-bot-no-homebrew-tess-taps
test-bot: don't run Homebrew tests for taps PRs.
| -rw-r--r-- | Library/Homebrew/dev-cmd/test-bot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dev-cmd/test-bot.rb b/Library/Homebrew/dev-cmd/test-bot.rb index 2704aa670..4168475f4 100644 --- a/Library/Homebrew/dev-cmd/test-bot.rb +++ b/Library/Homebrew/dev-cmd/test-bot.rb @@ -702,7 +702,7 @@ module Homebrew @category = __method__ return if @skip_homebrew - if @tap.nil? && (@test_default_formula || Array(@formulae).empty?) + if @tap.nil? && (@repository == HOMEBREW_REPOSITORY || Array(@formulae).empty?) tests_args = ["--official-cmd-taps"] tests_args_no_compat = [] tests_args_no_compat << "--coverage" if ARGV.include?("--coverage") |
