Skip to content

Commit 7ce719a

Browse files
authored
Merge pull request #3 from stackhpc/feature/env-vars-test-list
Make skip list and load list configurable with environment variables
2 parents 676b5dd + c26f263 commit 7ce719a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

bin/rally-verify-wrapper.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,18 @@ 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+
33+
if [ ! -z ${TEMPEST_CONF_OVERRIDES:+x} ]; then
34+
echo "$TEMPEST_CONF_OVERRIDES" > ~/tempest-overrides.conf
35+
fi
36+
2537
load_list=""
2638
# You can't have a load list and a pattern, pattern takes priority
2739
if [ -f ~/tempest-load-list ] && [ -z ${TEMPEST_PATTERN:+x} ]; then

0 commit comments

Comments
 (0)