Change-Id: I36e66bd52b535f4f6aa97f877b6d17d9d34cd63a
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
#!/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
OUTPUT=$(TOX_PARALLEL_NO_SPINNER=1 tox --parallel=auto)
printf "$OUTPUT\n"
cd $CURRENT_DIR
-done
\ No newline at end of file
+done