From 70b7e9c3c80f50bfdc943b44cd2539c0e225db27 Mon Sep 17 00:00:00 2001 From: MatthewLi Date: Fri, 14 Jul 2017 02:44:04 -0400 Subject: testapi: bugfix of not exist xml Change-Id: I43bc486e2fc12bea5f7664cc1e5acc5630e5f739 Signed-off-by: MatthewLi --- jjb/releng/automate.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'jjb') diff --git a/jjb/releng/automate.yml b/jjb/releng/automate.yml index db672648a..4f6044bb5 100644 --- a/jjb/releng/automate.yml +++ b/jjb/releng/automate.yml @@ -84,7 +84,9 @@ - shell: | cd ./utils/test/{module}/ tox - cp *.xml $WORKSPACE + if [ -e *.xml ];then + cp *.xml $WORKSPACE + fi publishers: - publish-coverage -- cgit