Skip to content

Commit

Permalink
Fix RuboCop and exclude psych from RBI generation
Browse files Browse the repository at this point in the history
  • Loading branch information
issyl0 committed Apr 2, 2024
1 parent c08b9bc commit 545db15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Library/Homebrew/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ group :style, optional: true do
gem "rubocop-sorbet", require: false
end
group :tests, optional: true do
gem "psych", "< 5", require: false
gem "debug", require: false
gem "parallel_tests", require: false
gem "psych", "< 5", require: false
gem "rspec", require: false
gem "rspec-github", require: false
gem "rspec_junit_formatter", require: false
Expand Down
1 change: 1 addition & 0 deletions Library/Homebrew/sorbet/tapioca/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ gem:
- language_server-protocol
- netrc
- parallel
- psych
- public_suffix
- racc
- rdoc
Expand Down
2 changes: 1 addition & 1 deletion Library/Homebrew/test/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
@__stdin = $stdin.clone

begin
if !example.metadata.keys.include?(:focus) && !ENV.key?("HOMEBREW_VERBOSE_TESTS")
if example.metadata.keys.exclude?(:focus) && !ENV.key?("HOMEBREW_VERBOSE_TESTS")
$stdout.reopen(File::NULL)
$stderr.reopen(File::NULL)
$stdin.reopen(File::NULL)
Expand Down

0 comments on commit 545db15

Please sign in to comment.