Closed
Description
Hi guys 😄
Currently when I launch this command
hurl a.hurl b.hurl c.hurl
hurl runs each *.hurl
file sequentially, first a.hurl, then b.hurl, then c.hurl.
# tests started sequentially
hurl a.hurl b.hurl c.hurl
─ BEGIN
├─ a.hurl
├─ b.hurl
├─ c.hurl
─ END
I propose you to add the --parallel
option allowing hurl to run *.hurl
files in parallel:
# all tests started at same time
hurl --parallel a.hurl b.hurl c.hurl
─ BEGIN
├─ a.hurl ├─ b.hurl ├─ c.hurl
─ END
# tests started two at a time
hurl --parallel 2 a.hurl b.hurl c.hurl
─ BEGIN
├─ a.hurl ├─ b.hurl
├─ c.hurl
─ END
What do you think about it?