You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main_test.go 588B

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