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 354B

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