Skip to content

Instantly share code, notes, and snippets.

@alexander-williamson
Forked from avanderberg/patiently.rb
Created July 6, 2016 16:38
Show Gist options
  • Save alexander-williamson/94fc5421c8fdbe93e4539a9472c1c346 to your computer and use it in GitHub Desktop.
Save alexander-williamson/94fc5421c8fdbe93e4539a9472c1c346 to your computer and use it in GitHub Desktop.
retry wrapper for cucumber steps
def patiently(&block)
cycles = 0
begin
yield
rescue => e
cycles += 1
sleep 0.1
if cycles < 10
retry
else
raise e
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment