Per-thread variables for parallel jobs #3786
Unanswered
PhilShaughnes
asked this question in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to provide a variable that is unique or specified for each thread?
For example, say I am testing some jobs that require locking behavior:
https://url/job/namespace
Where:
When running multiple jobs, this means I can't actually run tests against multiple namespaces simultaneously(e.g. namespace-one, namespace-two, namespace-three, etc) without wrapping hurl in
parallel
or something similar.Ideally each file could have something like
POST https://url/job/test_{{SUFFIX}}
and then I could specify
--job-variables SUFFIX="red,green,blue"
or something (indicates run a max of 3 jobs)?Beta Was this translation helpful? Give feedback.
All reactions