diff options
author | Ethan Koenig <etk39@cornell.edu> | 2017-01-30 00:17:43 -0500 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-01-30 13:17:43 +0800 |
commit | 7765593018cf26e9d5c9b68374b981f24993cfae (patch) | |
tree | 482eb78e952a5fe37174e97e063c1c65b0a78346 /models/setup_for_test.go | |
parent | 78535fb08ebe667f27da6b44a9af52aae1148434 (diff) | |
download | gitea-7765593018cf26e9d5c9b68374b981f24993cfae.tar.gz gitea-7765593018cf26e9d5c9b68374b981f24993cfae.zip |
Better settings for unit tests (#795)
Diffstat (limited to 'models/setup_for_test.go')
-rw-r--r-- | models/setup_for_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/models/setup_for_test.go b/models/setup_for_test.go index 0073e93456..c3e5c3aa54 100644 --- a/models/setup_for_test.go +++ b/models/setup_for_test.go @@ -30,8 +30,8 @@ func TestMain(m *testing.M) { setting.RunUser = "runuser" setting.SSH.Port = 3000 setting.SSH.Domain = "try.gitea.io" - setting.RepoRootPath = "/repos" - setting.AppDataPath = "/appdata" + setting.RepoRootPath = "/tmp/repos" + setting.AppDataPath = "/tmp/appdata" os.Exit(m.Run()) } |