File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,11 @@ if [ ! -z ${TEMPEST_PATTERN-x} ]; then
38
38
pattern=" --pattern $TEMPEST_PATTERN "
39
39
fi
40
40
41
+ concurrency=" "
42
+ if [ ! -z ${$TEMPEST_CONCURRENCY -x} ]; then
43
+ concurrency=" --concurrency $TEMPEST_CONCURRENCY "
44
+ fi
45
+
41
46
if [ ! -d $artifacts_dir ]; then
42
47
>&2 echo " You must mount a directory at $artifacts_dir "
43
48
exit -1
@@ -62,7 +67,7 @@ if [ -f ~/tempest-overrides.conf ]; then
62
67
rally verify configure-verifier --reconfigure --extend ~ /tempest-overrides.conf
63
68
fi
64
69
65
- rally verify start $skip_list $load_list $pattern \
70
+ rally verify start $skip_list $load_list $pattern $concurrency \
66
71
> >( tee -a $artifacts_dir /stdout.log) 2> >( tee -a $artifacts_dir /stderr.log >&2 )
67
72
68
73
rally verify report --type html --to $artifacts_dir /rally-verify-report.html
You can’t perform that action at this time.
0 commit comments