Windows compatibility for unit tests (#800)
This commit is contained in:
parent
2eb15f4a61
commit
0a02fb3c4f
1 changed files with 3 additions and 2 deletions
|
@ -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())
|
||||
}
|
||||
|
|
Reference in a new issue