You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I already had a look at the code and I think I already found the right places which need modification.
As we currently bail-out on errors, question is how we want to handle errors in the future. How do we want to display them to the user if one or several files have issues?
Also, I think I can have a look at this issue as I like to challenge myself with difficult problems and don't need an issue labeled
good first issueGood for newcomers
.
When a Hurl file is in error, we stop the tests run as soon as we can (the default is "fail fast")
For instance:
Given
b.hurl
is in error, executed tests will only bea.hurl
andb.hurl
.We have an option called
--continue-on-error
that, if one Hurl file is in error, will try to execute this file until the end.As the doc tells:
So we need another option to run all Hurl files, regardless of there are error or not =>
--no-fail-fast
.The text was updated successfully, but these errors were encountered: