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

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