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

fix Lint/NonLocalExitFromIterator #1037

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,6 @@ Lint/NestedMethodDefinition:
Exclude:
- 'lib/cucumber/formatter/ansicolor.rb'

# Offense count: 1
Lint/NonLocalExitFromIterator:
Exclude:
- 'lib/autotest/cucumber_mixin.rb'

# Offense count: 7
Lint/RescueException:
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion lib/autotest/cucumber_mixin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def run_features
hook :run_features
Tempfile.open('autotest-cucumber') do |dirty_features_file|
cmd = self.make_cucumber_cmd(self.features_to_run, dirty_features_file.path)
return if cmd.empty?
break if cmd.empty?
puts cmd unless $q
old_sync = $stdout.sync
$stdout.sync = true
Expand Down