From c9c61b560d88b929de3457276a6372583c45f924 Mon Sep 17 00:00:00 2001
From: Cédric Ollivier <cedric.ollivier@orange.com>
Date: Thu, 22 Aug 2019 13:16:54 +0200
Subject: Protect tag in functest.yaml
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Else 3.10 becomes falsy 3.1.

It also conforms with latest changes in Xtesting ansible role [1].

https://github.com/collivier/ansible-role-xtesting/commit/292ab576fb8f0a13519bacc5ec46561a3ed8f838

Change-Id: I75e57f05d99381c9d0608aa4a88f0b12d9b6a9cf
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
---
 ansible/site.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ansible/site.yml b/ansible/site.yml
index fb02094dc..1f15f8f1e 100644
--- a/ansible/site.yml
+++ b/ansible/site.yml
@@ -10,7 +10,7 @@
           - repo: _
             dport:
             container: alpine
-            tag: 3.10
+            tag: '3.10'
         steps:
           - name: build opnfv/functest-core
             containers:
@@ -81,6 +81,8 @@
             - heat_ims
             - vyos_vrouter
             - juju_epc
+          properties:
+            execution-type: SEQUENTIALLY
         - container: functest-features
           tests:
             - doctor-notification
-- 
cgit