Skip to content

Commit

Permalink
Spec: increase retries on Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoody committed Jan 21, 2016
1 parent 28b4dbe commit 796cb42
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion spec/resources.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@ def whoami
end

def launch_retries
travis_ci? ? 8 : 2
if RunLoop::Environment.travis?
8
elsif RunLoop::Environment.jenkins?
5
else
2
end
end

def xcode
Expand Down

0 comments on commit 796cb42

Please sign in to comment.