Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "formula_installer: don't always install test deps." #6474

Merged
merged 1 commit into from Sep 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 2 additions & 6 deletions Library/Homebrew/formula_installer.rb
Expand Up @@ -483,12 +483,8 @@ def expand_dependencies(deps)

if dep.prune_from_option?(build)
Dependency.prune
elsif dep.test?
if !include_test?
Dependency.prune
elsif !dep.installed?
Dependency.keep_but_prune_recursive_deps
end
elsif include_test? && dep.test? && !dep.installed?
Dependency.keep_but_prune_recursive_deps
elsif dep.build? && install_bottle_for?(dependent, build)
Dependency.prune
elsif dep.prune_if_build_and_not_dependent?(dependent)
Expand Down