Update robot test tag from sanity to daily
[osm/devops.git] / devops-stages / stage-test.sh
index 3e5196f..51b3513 100755 (executable)
 #   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"
+CHARM_NAMES="keystone lcm mon nbi ng-ui pla pol prometheus ro grafana"
 for charm in $CHARM_NAMES; do
     cd $CHARM_PATH/$charm
-    tox --recreate
+    OUTPUT=$(TOX_PARALLEL_NO_SPINNER=1 tox --parallel=auto)
+    printf "$OUTPUT\n"
     cd $CURRENT_DIR
 done
\ No newline at end of file