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-14 04:03:26 +0300
committerJustin Tobler <jtobler@gitlab.com>2023-02-14 04:03:26 +0300
commitf29aeb157d40ca652be7e4fe0032f321e30e3c51 (patch)
tree83d68b7f44bc5cc662fdf79e91581ff74aea66eb /internal
parentd54c0fc0d7b9560feb7f9d692dcdecc6facb0d92 (diff)
gitaly: Quarantine transaction manager subtest
Currently the `propose_returns_if_context_is_canceled_before_admission` subtest in `TestTransactionManager` is flaky and resulting in intermittent pipeline failures. This change quarantines the test to prevent execution of the flaky test.
Diffstat (limited to 'internal')
-rw-r--r--internal/gitaly/transaction_manager_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/gitaly/transaction_manager_test.go b/internal/gitaly/transaction_manager_test.go
index b672027fc..775e57796 100644
--- a/internal/gitaly/transaction_manager_test.go
+++ b/internal/gitaly/transaction_manager_test.go
@@ -1472,6 +1472,11 @@ func TestTransactionManager(t *testing.T) {
t.Run(tc.desc, func(t *testing.T) {
t.Parallel()
+ testhelper.SkipQuarantinedTest(t,
+ "https://gitlab.com/gitlab-org/gitaly/-/issues/4794",
+ "TestTransactionManager/propose_returns_if_context_is_canceled_before_admission",
+ )
+
// Setup the repository with the exact same state as what was used to build the test cases.
repository, _, _, _ := setupRepository(t)