Add checking of status of local http server used to serve deb packages
[osm/devops.git] / devops-stages / stage-test.sh
index 51b3513..b455932 100755 (executable)
@@ -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.
 #   limitations under the License.
 
 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
-    OUTPUT=$(TOX_PARALLEL_NO_SPINNER=1 tox --parallel=auto)
-    printf "$OUTPUT\n"
+    TOX_PARALLEL_NO_SPINNER=1 tox --parallel=auto
     cd $CURRENT_DIR
-done
\ No newline at end of file
+done