mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Better tests organization
This commit is contained in:
parent
ecc0df9e7c
commit
ce240cfeff
8 changed files with 54 additions and 35 deletions
25
tests/init_tests.go
Normal file
25
tests/init_tests.go
Normal file
|
@ -0,0 +1,25 @@
|
|||
package tests
|
||||
|
||||
import (
|
||||
"github.com/astaxie/beego"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func Init(t *testing.T, skipOnShort bool) {
|
||||
if skipOnShort && testing.Short() {
|
||||
t.Skip("skipping test in short mode.")
|
||||
}
|
||||
|
||||
_, file, _, _ := runtime.Caller(0)
|
||||
appPath, _ := filepath.Abs(filepath.Join(filepath.Dir(file), ".."))
|
||||
beego.TestBeegoInit(appPath)
|
||||
|
||||
noLog := os.Getenv("NOLOG")
|
||||
if noLog != "" {
|
||||
beego.SetLevel(beego.LevelError)
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue