X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=devops-stages%2Fstage-test.sh;h=ae36ccfdc61b01dca5ba7af32a502fd55344faf3;hb=f88cb4f7140fd4e56b797deb29a41bd69c37913d;hp=a8b7fe6870bc45bcb0c4df66f81c07a8262cccc9;hpb=d0cb0efebf646b6ef9870ae2aacbc3915829d42a;p=osm%2Fdevops.git diff --git a/devops-stages/stage-test.sh b/devops-stages/stage-test.sh index a8b7fe68..ae36ccfd 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. @@ -14,13 +15,17 @@ # limitations under the License. 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 grafana mongodb-exporter mysqld-exporter kafka-exporter" +CHARM_NAMES="osm-lcm osm-mon osm-nbi osm-ng-ui osm-pol osm-ro keystone prometheus grafana vca-integrator-operator" for charm in $CHARM_NAMES; do - cd $CHARM_PATH/$charm - TOX_PARALLEL_NO_SPINNER=1 tox --parallel=auto - cd $CURRENT_DIR -done \ No newline at end of file + 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,unit --parallel=auto + cd "${CURRENT_DIR}" + fi +done