We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When a Hurl file is in error, we stop the tests run as soon as we can (the default is "fail fast")
For instance:
$ hurl --jobs 1 --test a.hurl b.hurl c.hurl d.hurl
Given b.hurl is in error, executed tests will only be a.hurl and b.hurl.
b.hurl
a.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.
--continue-on-error
As the doc tells:
Note that this option does not affect the behavior with multiple input Hurl files. All the input files are executed independently. The result of one file does not affect the execution of the other Hurl files.
Note that this option does not affect the behavior with multiple input Hurl files.
All the input files are executed independently. The result of one file does not affect the execution of the other Hurl files.
So we need another option to run all Hurl files, regardless of there are error or not => --no-fail-fast.
--no-fail-fast
The text was updated successfully, but these errors were encountered:
Hi,
I would like to work on this issue. Can I take this on?
Sorry, something went wrong.
Hi @krakenbite
You can of course but be warned that this one can be more difficult that it seems.
For a starter, you can also work on issues labeled "good first issues" good first issue Good for newcomers
jcamiel
No branches or pull requests
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: