[github] Bump number of cloning attempts to 10

This commit is contained in:
Ivan Semenov
2019-02-22 14:51:32 +03:00
parent 49d5a0541e
commit c7c6f56756
@@ -85,7 +85,7 @@ class GithubCreatePullRequestTest : GithubGitRepoTest() {
repository.apply {
git("remote add origin ${repo.cloneUrl}")
// fork is initialized in background and there's nothing to poll
for (i in 1..5) {
for (i in 1..10) {
try {
git("fetch")
break