Skip to content

Instantly share code, notes, and snippets.

@pfiller
Created May 22, 2014 16:28
Show Gist options
  • Save pfiller/5b28ba9696e7ca06fdf9 to your computer and use it in GitHub Desktop.
Save pfiller/5b28ba9696e7ca06fdf9 to your computer and use it in GitHub Desktop.
I used this simple script to run a flaky test repeatedly.
#!/bin/bash
n=1
while (( $n <= 100 ))
do
bundle exec ruby -I test test/integration/timesheet/mobile_test.rb -n test_start_stop_timer_then_delete_timer
n=$(( n+1 ))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment