X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=devops-stages%2Fstage-test.sh;h=b455932dec54be7b3055078194b7d0ae77646337;hb=499b442f67119589220a1ff144e3b26a9b7714ed;hp=bea54793c52ebb9cfd878aade0d6e0177ba2495b;hpb=49379ced23b5e344a773ce77ac9cb59c1864e19b;p=osm%2Fdevops.git diff --git a/devops-stages/stage-test.sh b/devops-stages/stage-test.sh index bea54793..b455932d 100755 --- a/devops-stages/stage-test.sh +++ b/devops-stages/stage-test.sh @@ -1,5 +1,6 @@ #!/bin/sh # Copyright 2021 Canonical Ltd. +# Copyright ETSI # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -13,14 +14,19 @@ # See the License for the specific language governing permissions and # limitations under the License. -set -eux +set -eu + +if [ $(git diff --name-only origin/$GERRIT_BRANCH -- installers/charm/ |wc -l) -eq 0 ]; then + exit 0 +fi + CURRENT_DIR=`pwd` # Execute tests for charms CHARM_PATH="./installers/charm" -CHARM_NAMES="keystone lcm mon nbi ng-ui pla pol prometheus ro grafana" +CHARM_NAMES="keystone lcm mon nbi ng-ui pla pol prometheus ro grafana mongodb-exporter mysqld-exporter kafka-exporter" for charm in $CHARM_NAMES; do cd $CHARM_PATH/$charm - tox --recreate + TOX_PARALLEL_NO_SPINNER=1 tox --parallel=auto cd $CURRENT_DIR -done \ No newline at end of file +done