(t *testing.T, repoURL, token string)
| 507 | } |
| 508 | |
| 509 | func authGitURL(t *testing.T, repoURL, token string) string { |
| 510 | u, err := url.Parse(repoURL) |
| 511 | require.NoError(t, err) |
| 512 | u.User = url.UserPassword("x-access-token", token) |
| 513 | return u.String() |
| 514 | } |
| 515 | |
| 516 | func waitForGithubRepo(t *testing.T, client *github.Client, owner, repo string) { |
| 517 | t.Helper() |
no test coverage detected