Feature 10296
[osm/devops.git] / devops-stages / stage-test.sh
index bea5479..51b3513 100755 (executable)
@@ -13,7 +13,7 @@
 #   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
@@ -21,6 +21,7 @@ CHARM_PATH="./installers/charm"
 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