do not exit with error when producing event stream

Этот коммит содержится в:
gedi 2016-09-10 21:22:24 +03:00
родитель 8d911a71f0
коммит dcc654c5fb

2
run.go
Просмотреть файл

@ -105,7 +105,7 @@ func RunWithOptions(suite string, contextInitializer func(suite *Suite), opt Opt
} else {
failed = r.run()
}
if failed {
if failed && format != "events" {
return 1
}
return 0