photoprism/internal/entity/entity_test.go

15 lines
174 B
Go
Raw Normal View History

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