mirror of
https://github.com/alda-lang/alda.git
synced 2026-03-03 18:23:36 +01:00
28 lines
700 B
Go
28 lines
700 B
Go
package testing
|
|
|
|
import (
|
|
"flag"
|
|
"testing"
|
|
|
|
log "alda.io/client/logging"
|
|
)
|
|
|
|
func init() {
|
|
// Apparently there was a breaking change in Go 1.13 related to the order that
|
|
// flags are parsed in init functions, or something. When I tried upgrading
|
|
// the Go version we're using in CI from 1.12.9 to 1.15.3, I got the same
|
|
// error message as the one reported in this issue:
|
|
//
|
|
// https://github.com/golang/go/issues/31859
|
|
//
|
|
// Someone pointed out that explicitly initiating the testing package would
|
|
// fix the issue, so that's what this is doing.
|
|
testing.Init()
|
|
|
|
level := flag.String("log-level", "", "Logging level")
|
|
flag.Parse()
|
|
if *level != "" {
|
|
log.SetGlobalLevel(*level)
|
|
}
|
|
}
|