Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031
  1. // Copyright 2020 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package repo
  5. import (
  6. "path/filepath"
  7. "testing"
  8. "code.gitea.io/gitea/models/unittest"
  9. )
  10. func TestMain(m *testing.M) {
  11. unittest.MainTest(m, &unittest.TestOptions{
  12. GiteaRootPath: filepath.Join("..", ".."),
  13. FixtureFiles: []string{
  14. "attachment.yml",
  15. "repo_archiver.yml",
  16. "repository.yml",
  17. "repo_unit.yml",
  18. "repo_indexer_status.yml",
  19. "repo_redirect.yml",
  20. "watch.yml",
  21. "star.yml",
  22. "topic.yml",
  23. "repo_topic.yml",
  24. "user.yml",
  25. },
  26. })
  27. }