We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 815ae46 commit 47a3ed6Copy full SHA for 47a3ed6
internal/saucecloud/cloud.go
@@ -803,8 +803,10 @@ func (r *CloudRunner) logSuite(ctx context.Context, res result) {
803
logger.Error().Err(res.err).Msg("Suite failed to start.")
804
return
805
}
806
- logger.Error().Err(res.err).Msg("Suite failed unexpectedly.")
807
- return
+ if !job.Done(res.job.Status) {
+ logger.Error().Err(res.err).Msg("Suite failed unexpectedly.")
808
+ return
809
+ }
810
811
812
// Job isn't done, hence nothing more to log about it.
0 commit comments