Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Tobler <jtobler@gitlab.com>2023-02-08 19:08:49 +0300
committerJustin Tobler <jtobler@gitlab.com>2023-02-08 20:21:36 +0300
commitae63665f49c5acaf65bf847932843b583b485c4f (patch)
tree34f8435cdedab237d548042627c7fc7c7481a597
parent7ac312d7601346bab08bad1194e0e2fc5102beb1 (diff)
repository: Quarantine replicate repository test
Currently the `TestReplicateRepository_BadRepository/target_invalid` test is flaky during execution and causes frequent failure in the CI pipelines. This change quarantines the test so that it is skipped during test execution.
-rw-r--r--internal/gitaly/service/repository/replicate_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/gitaly/service/repository/replicate_test.go b/internal/gitaly/service/repository/replicate_test.go
index ca10e838f..16ba95abf 100644
--- a/internal/gitaly/service/repository/replicate_test.go
+++ b/internal/gitaly/service/repository/replicate_test.go
@@ -415,6 +415,10 @@ func TestReplicateRepository_BadRepository(t *testing.T) {
},
} {
t.Run(tc.desc, func(t *testing.T) {
+ testhelper.SkipQuarantinedTest(t,
+ "https://gitlab.com/gitlab-org/gitaly/-/issues/4773",
+ "TestReplicateRepository_BadRepository/target_invalid")
+
cfgBuilder := testcfg.NewGitalyCfgBuilder(testcfg.WithStorages("default", "target"))
cfg := cfgBuilder.Build(t)