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