diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2022-07-13 23:12:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 23:12:42 -0400 |
commit | ac0f2245510f6c75db1b1e7af7ca01c15dec26bc (patch) | |
tree | ceee3236cabf16c80bc552660a194062775b25a1 | |
parent | 46ce10f062e4ac681c3f1e14e2e871bb6e4c09bc (diff) | |
parent | cbd5319f505fd066a6bcb10c7c649be20d525061 (diff) | |
download | libgit2-ac0f2245510f6c75db1b1e7af7ca01c15dec26bc.tar.gz |
Merge pull request #6353 from libgit2/ethomson/flaky_googlesource
tests: skip flaky-ass googlesource tests
-rw-r--r-- | tests/libgit2/online/clone.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/libgit2/online/clone.c b/tests/libgit2/online/clone.c index ef340c2e2..6a087b1af 100644 --- a/tests/libgit2/online/clone.c +++ b/tests/libgit2/online/clone.c @@ -484,9 +484,13 @@ void test_online_clone__bitbucket_falls_back_to_specified_creds(void) void test_online_clone__googlesource(void) { +#ifdef __APPLE__ + cl_skip(); +#else cl_git_pass(git_clone(&g_repo, GOOGLESOURCE_REPO_URL, "./foo", &g_options)); git_repository_free(g_repo); g_repo = NULL; cl_fixture_cleanup("./foo"); +#endif } static int cancel_at_half(const git_indexer_progress *stats, void *payload) |