photoprism/internal/models/models_test.go

15 lines
174 B
Go
Raw Normal View History

package models
import (
"os"
"testing"
log "github.com/sirupsen/logrus"
)
func TestMain(m *testing.M) {
log.SetLevel(log.DebugLevel)
code := m.Run()
os.Exit(code)
}