summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/pr/checkout.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/pr/checkout.go b/contrib/pr/checkout.go
index 7e6351cc63..490d6760c8 100644
--- a/contrib/pr/checkout.go
+++ b/contrib/pr/checkout.go
@@ -79,16 +79,16 @@ func runPR() {
setting.CheckLFSVersion()
//models.LoadConfigs()
/*
- models.DbCfg.Type = "sqlite3"
- models.DbCfg.Path = ":memory:"
- models.DbCfg.Timeout = 500
+ setting.Database.Type = "sqlite3"
+ setting.Database.Path = ":memory:"
+ setting.Database.Timeout = 500
*/
db := setting.Cfg.Section("database")
db.NewKey("DB_TYPE", "sqlite3")
db.NewKey("PATH", ":memory:")
- setting.LogSQL = true
- models.LoadConfigs()
+
routers.NewServices()
+ setting.Database.LogSQL = true
//x, err = xorm.NewEngine("sqlite3", "file::memory:?cache=shared")
var helper testfixtures.Helper = &testfixtures.SQLite{}