Disable trace profiling so tests work on CircleCI

This commit is contained in:
Tobie Morgan Hitchcock 2016-09-30 15:57:36 +01:00
parent 529acf65ff
commit 19405084cf

View file

@ -31,8 +31,6 @@ func main() {
defer profile.Start(profile.MemProfile, profile.ProfilePath("."), profile.NoShutdownHook).Stop()
case "block":
defer profile.Start(profile.BlockProfile, profile.ProfilePath("."), profile.NoShutdownHook).Stop()
case "trace":
defer profile.Start(profile.TraceProfile, profile.ProfilePath("."), profile.NoShutdownHook).Stop()
}
cli.Init()