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

1234567891011121314151617181920212223
  1. // Copyright 2020 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package project
  4. import (
  5. "testing"
  6. "code.gitea.io/gitea/models/unittest"
  7. _ "code.gitea.io/gitea/models/repo"
  8. )
  9. func TestMain(m *testing.M) {
  10. unittest.MainTest(m, &unittest.TestOptions{
  11. FixtureFiles: []string{
  12. "project.yml",
  13. "project_board.yml",
  14. "project_issue.yml",
  15. "repository.yml",
  16. },
  17. })
  18. }