code.gitea.io/gitea@v1.21.7/services/repository/main_test.go (about)

     1  // Copyright 2019 The Gitea Authors. All rights reserved.
     2  // SPDX-License-Identifier: MIT
     3  
     4  package repository
     5  
     6  import (
     7  	"path/filepath"
     8  	"testing"
     9  
    10  	"code.gitea.io/gitea/models/unittest"
    11  )
    12  
    13  func TestMain(m *testing.M) {
    14  	unittest.MainTest(m, &unittest.TestOptions{
    15  		GiteaRootPath: filepath.Join("..", ".."),
    16  	})
    17  }