Browse Source

Don't print SQL in unit tests (#2995)

* Add GITEA_UNIT_TESTS_VERBOSE environment variable to enable printing SQL
for-closed-social
Ethan Koenig 6 years ago
committed by Lauris BH
parent
commit
1028ef2def
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      models/unit_tests.go

+ 4
- 1
models/unit_tests.go View File

@ -32,7 +32,10 @@ func CreateTestEngine(fixturesDir string) error {
if err = x.StoreEngine("InnoDB").Sync2(tables...); err != nil {
return err
}
x.ShowSQL(true)
switch os.Getenv("GITEA_UNIT_TESTS_VERBOSE") {
case "true", "1":
x.ShowSQL(true)
}
return InitFixtures(&testfixtures.SQLite{}, fixturesDir)
}

Loading…
Cancel
Save