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:
authorKarthik Nayak <knayak@gitlab.com>2023-02-15 18:57:09 +0300
committerKarthik Nayak <knayak@gitlab.com>2023-02-15 18:57:09 +0300
commit36f8a7020d16ed74c83771a83cf584a55402406e (patch)
treefea50301a0a15ff241b22feaae61b16518f75425
parent9b1bb2480275c22dd2157e08a2ec2f7db835657b (diff)
The test `invalid_reference_aborts_the_entire_transaction` is flaky. Let's quarantine it till we fix the issue.
-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 775e57796..3b5d1dc32 100644
--- a/internal/gitaly/transaction_manager_test.go
+++ b/internal/gitaly/transaction_manager_test.go
@@ -1477,6 +1477,11 @@ func TestTransactionManager(t *testing.T) {
"TestTransactionManager/propose_returns_if_context_is_canceled_before_admission",
)
+ testhelper.SkipQuarantinedTest(t,
+ "https://gitlab.com/gitlab-org/gitaly/-/issues/4797",
+ "TestTransactionManager/invalid_reference_aborts_the_entire_transaction",
+ )
+
// Setup the repository with the exact same state as what was used to build the test cases.
repository, _, _, _ := setupRepository(t)