Skip to content

Commit

Permalink
Prevent intermittent failures in RepoIndexerTest (2) (#19229)
Browse files Browse the repository at this point in the history
So whilst #19225 fixes one issue it caused another. We need to initialise the Git
module first.

Related #19225
Fix #19162

Signed-off-by: Andrew Thornton <art27@cantab.net>

Co-authored-by: 6543 <6543@obermui.de>
  • Loading branch information
zeripath and 6543 authored Mar 27, 2022
1 parent 42fe076 commit d3dbdbe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/indexer/stats/indexer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (

repo_model "code.gitea.io/gitea/models/repo"
"code.gitea.io/gitea/models/unittest"
"code.gitea.io/gitea/modules/git"
"code.gitea.io/gitea/modules/queue"
"code.gitea.io/gitea/modules/setting"

Expand All @@ -26,6 +27,10 @@ func TestMain(m *testing.M) {
}

func TestRepoStatsIndex(t *testing.T) {
if err := git.Init(context.Background()); !assert.NoError(t, err) {
return
}

assert.NoError(t, unittest.PrepareTestDatabase())
setting.Cfg = ini.Empty()

Expand Down

0 comments on commit d3dbdbe

Please sign in to comment.