X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Ftox-run.sh;h=4321ea68ba47760cb2ca104944d7bc8e8e1bf06c;hb=refs%2Ftags%2Fv0.76.3;hp=682650c92815dcd146871ae78fec73960577f499;hpb=2c9b698e85fc55f3a0b865d5407044a05986736a;p=releng%2Fglobal-jjb.git diff --git a/shell/tox-run.sh b/shell/tox-run.sh index 682650c9..4321ea68 100644 --- a/shell/tox-run.sh +++ b/shell/tox-run.sh @@ -40,9 +40,15 @@ if [[ -n ${TOX_ENVS:-} ]]; then TOX_OPTIONS_LIST=$TOX_OPTIONS_LIST" -e $TOX_ENVS" fi; -if [[ ${PARALLEL,,} = true ]]; then - TOX_OPTIONS_LIST=$TOX_OPTIONS_LIST" --parallel auto --parallel-live" -fi; +case ${PARALLEL,,} in + true|auto ) + TOX_OPTIONS_LIST=$TOX_OPTIONS_LIST" --parallel auto --parallel-live";; + all ) + TOX_OPTIONS_LIST=$TOX_OPTIONS_LIST" --parallel all --parallel-live";; + [0-9]* ) + TOX_OPTIONS_LIST=$TOX_OPTIONS_LIST" --parallel ${PARALLEL} --parallel-live";; +esac + # $TOX_OPTIONS_LIST are intentionnaly not surrounded by quotes # to correcly pass options to tox