X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=devops-stages%2Fstage-test.sh;h=1d0d243ce5f577d707432f91a25a81db3498140f;hb=93e14ef514e68b0d060f359c8b33c962f61393e2;hp=3e5196f02e606eeadae441613177bb8cc14f0d13;hpb=95ba7e1641316616ce5a9442d485753456ff9525;p=osm%2Fdevops.git diff --git a/devops-stages/stage-test.sh b/devops-stages/stage-test.sh index 3e5196f0..1d0d243c 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,27 @@ # See the License for the specific language governing permissions and # limitations under the License. -set -eux +set -eu + CURRENT_DIR=`pwd` # Execute tests for charms CHARM_PATH="./installers/charm" -CHARM_NAMES="keystone lcm mon nbi ng-ui pla pol prometheus ro" -for charm in $CHARM_NAMES; do - cd $CHARM_PATH/$charm - tox --recreate - cd $CURRENT_DIR -done \ No newline at end of file +NEW_CHARMS_NAMES="osm-lcm osm-mon osm-nbi osm-ng-ui osm-pol osm-ro vca-integrator-operator" +OLD_CHARMS_NAMES="keystone prometheus grafana" +for charm in $NEW_CHARMS_NAMES; do + if [ $(git diff --name-only "origin/${GERRIT_BRANCH}" -- "installers/charm/${charm}" | wc -l) -ne 0 ]; then + echo "Running tox for ${charm}" + cd "${CHARM_PATH}/${charm}" + TOX_PARALLEL_NO_SPINNER=1 tox -e lint --parallel=auto + cd "${CURRENT_DIR}" + fi +done +for charm in $OLD_CHARMS_NAMES; do + if [ $(git diff --name-only "origin/${GERRIT_BRANCH}" -- "installers/charm/${charm}" | wc -l) -ne 0 ]; then + echo "Running tox for ${charm}" + cd "${CHARM_PATH}/${charm}" + TOX_PARALLEL_NO_SPINNER=1 tox --parallel=auto + cd "${CURRENT_DIR}" + fi +done