Windows compatibility for unit tests (#800)

pull/802/head
Ethan Koenig 7 years ago committed by Lunny Xiao
parent 2eb15f4a61
commit 0a02fb3c4f
  1. 5
      models/setup_for_test.go

@ -7,6 +7,7 @@ package models
import (
"fmt"
"os"
"path/filepath"
"testing"
"code.gitea.io/gitea/modules/setting"
@ -30,8 +31,8 @@ func TestMain(m *testing.M) {
setting.RunUser = "runuser"
setting.SSH.Port = 3000
setting.SSH.Domain = "try.gitea.io"
setting.RepoRootPath = "/tmp/repos"
setting.AppDataPath = "/tmp/appdata"
setting.RepoRootPath = filepath.Join(os.TempDir(), "repos")
setting.AppDataPath = filepath.Join(os.TempDir(), "appdata")
os.Exit(m.Run())
}

Loading…
Cancel
Save