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
With Hurl 4.2.0:
Given a directory /tmp/a/ that contains Hurl files and a directory /tmp/b/ that does not contains Hurl files:
/tmp/a/
/tmp/b/
$ hurl --glob '/tmp/a/*.hurl' --glob '/tmp/b/*.hurl' # ... # => test in /tmp/a/ executed # ...
Reversing the two globs, we have an error:
$ hurl --glob '/tmp/b/*.hurl' --glob '/tmp/a/*.hurl' error: hurl: cannot access '/tmp/b/*.hurl': No such file or directory
The text was updated successfully, but these errors were encountered:
jcamiel
Successfully merging a pull request may close this issue.
With Hurl 4.2.0:
Given a directory
/tmp/a/
that contains Hurl files and a directory/tmp/b/
that does not contains Hurl files:Reversing the two globs, we have an error:
The text was updated successfully, but these errors were encountered: