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:
authorJacob Vosmaer (GitLab) <jacob@gitlab.com>2018-04-06 11:24:05 +0300
committerZeger-Jan van de Weg <zegerjan@gitlab.com>2018-04-06 11:24:05 +0300
commitadb34a203b860ca19980b9d521630f4a6da12150 (patch)
treedfac15449fedcce436c484952e3c12ced61057cd /internal/service
parentc0017a069b4e051430cd0cb4363a1ff0b7dc2f76 (diff)
Run Go test suite with '-race' in CI
Diffstat (limited to 'internal/service')
-rw-r--r--internal/service/repository/testhelper_test.go1
-rw-r--r--internal/service/wiki/testhelper_test.go1
2 files changed, 0 insertions, 2 deletions
diff --git a/internal/service/repository/testhelper_test.go b/internal/service/repository/testhelper_test.go
index 7926c015e..d41be6fc0 100644
--- a/internal/service/repository/testhelper_test.go
+++ b/internal/service/repository/testhelper_test.go
@@ -88,7 +88,6 @@ func TestMain(m *testing.M) {
func testMain(m *testing.M) int {
defer testhelper.MustHaveNoChildProcess()
- testhelper.ConfigureTestStorage()
testhelper.ConfigureRuby()
config.Config.Auth = config.Auth{Token: config.Token(testhelper.RepositoryAuthToken)}
diff --git a/internal/service/wiki/testhelper_test.go b/internal/service/wiki/testhelper_test.go
index f9b9207cd..4b0aeaa96 100644
--- a/internal/service/wiki/testhelper_test.go
+++ b/internal/service/wiki/testhelper_test.go
@@ -153,7 +153,6 @@ func updateWikiPage(t *testing.T, client pb.WikiServiceClient, wikiRepo *pb.Repo
}
func setupWikiRepo(t *testing.T) (*pb.Repository, string, func()) {
- testhelper.ConfigureTestStorage()
relPath := strings.Join([]string{t.Name(), "wiki-test.git"}, "-")
storagePath := testhelper.GitlabTestStoragePath()
wikiRepoPath := path.Join(storagePath, relPath)