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:
authorPavlo Strokov <pstrokov@gitlab.com>2023-02-06 18:05:09 +0300
committerPavlo Strokov <pstrokov@gitlab.com>2023-02-13 14:39:43 +0300
commite4c21598faf9af715c8a38c2bb3b8e132495e564 (patch)
tree744c83736ddb7762220fd288fc91dc7d85aaf4b0
parent1bf6526bf2abd0850012ffba754bcadf6fcc7170 (diff)
Parallelize check tests execution
Tests for the 'check' sub-command now runs in parallel.
-rw-r--r--cmd/gitaly/check_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/gitaly/check_test.go b/cmd/gitaly/check_test.go
index a9d32f27c..26e3ae9ae 100644
--- a/cmd/gitaly/check_test.go
+++ b/cmd/gitaly/check_test.go
@@ -17,6 +17,7 @@ import (
)
func TestCheckOK(t *testing.T) {
+ t.Parallel()
user, password := "user123", "password321"
c := gitlab.TestServerOptions{
@@ -61,6 +62,7 @@ func TestCheckOK(t *testing.T) {
}
func TestCheckBadCreds(t *testing.T) {
+ t.Parallel()
user, password := "user123", "password321"
c := gitlab.TestServerOptions{