Skip to content

Commit 5c0852d

Browse files
committed
Don't exit early on failure
This seems to be a change in behaviour. We want to be able to collect the artifacts after a run.
1 parent 09cb6e7 commit 5c0852d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/rally-verify-wrapper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ if [ -f ~/tempest-overrides.conf ]; then
9090
rally verify configure-verifier --reconfigure --extend ~/tempest-overrides.conf
9191
fi
9292

93-
rally verify start $skip_list $load_list $pattern $concurrency > >(tee -a $artifacts_dir/stdout.log) 2> >(tee -a $artifacts_dir/stderr.log >&2)
93+
rally verify start $skip_list $load_list $pattern $concurrency > >(tee -a $artifacts_dir/stdout.log) 2> >(tee -a $artifacts_dir/stderr.log >&2) || export failed=1
9494

9595
rally verify report --type html --to $artifacts_dir/rally-verify-report.html
9696
rally verify report --type json --to $artifacts_dir/rally-verify-report.json

0 commit comments

Comments
 (0)