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
path: root/client
diff options
context:
space:
mode:
authorToon Claes <toon@gitlab.com>2022-07-08 17:42:48 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-07-18 12:04:55 +0300
commit33ff00ca1a07022c0c8e4e753281d47612017a12 (patch)
tree1beae665ab2ad897987f8d2bacd6821e1a6ff2c7 /client
parent2454a8b94ff90f33ff289b5d2026409f12e8da5c (diff)
test: Disable all test with tag sha256
We're about to add the ability to test with SHA256 hashes. We assume none of the tests work with this object format. With this change we add the build constraint to not run any test when the tag 'gitaly_test_sha256' is set.
Diffstat (limited to 'client')
-rw-r--r--client/client_test.go2
-rw-r--r--client/dial_test.go2
-rw-r--r--client/pool_test.go2
3 files changed, 6 insertions, 0 deletions
diff --git a/client/client_test.go b/client/client_test.go
index 8cd8c2c02..b386a0429 100644
--- a/client/client_test.go
+++ b/client/client_test.go
@@ -1,3 +1,5 @@
+//go:build !gitaly_test_sha256
+
package client
import (
diff --git a/client/dial_test.go b/client/dial_test.go
index f488a3ede..e67b6bea9 100644
--- a/client/dial_test.go
+++ b/client/dial_test.go
@@ -1,3 +1,5 @@
+//go:build !gitaly_test_sha256
+
package client
import (
diff --git a/client/pool_test.go b/client/pool_test.go
index 37b6b9920..586c75287 100644
--- a/client/pool_test.go
+++ b/client/pool_test.go
@@ -1,3 +1,5 @@
+//go:build !gitaly_test_sha256
+
package client
import (