Skip to content

Commit c2b7f44

Browse files
committed
Make skip list and load list configurable with environment variables
1 parent fae84be commit c2b7f44

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

bin/rally-verify-wrapper.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ if [ ! -z ${TEMPEST_VERSION:+x} ]; then
2222
tempest_version="--version $TEMPEST_VERSION"
2323
fi
2424

25+
if [ ! -z ${TEMPEST_LOAD_LIST:+x} ]; then
26+
echo "$TEMPEST_LOAD_LIST" > ~/tempest-load-list
27+
fi
28+
29+
if [ ! -z ${TEMPEST_SKIP_LIST:+x} ]; then
30+
echo "$TEMPEST_SKIP_LIST" > ~/tempest-skip-list
31+
fi
32+
2533
load_list=""
2634
# You can't have a load list and a pattern, pattern takes priority
2735
if [ -f ~/tempest-load-list ] && [ -z ${TEMPEST_PATTERN:+x} ]; then

0 commit comments

Comments
 (0)