diff options
author | MatthewLi <lijun_1203@126.com> | 2017-07-14 02:44:04 -0400 |
---|---|---|
committer | MatthewLi <lijun_1203@126.com> | 2017-07-14 02:44:40 -0400 |
commit | 70b7e9c3c80f50bfdc943b44cd2539c0e225db27 (patch) | |
tree | 4e84c545717b3037f389c2a7f16af89c803383a9 /jjb | |
parent | cedeabdbbb405627ce536ae63ea474467b3ba223 (diff) |
testapi: bugfix of not exist xml
Change-Id: I43bc486e2fc12bea5f7664cc1e5acc5630e5f739
Signed-off-by: MatthewLi <lijun_1203@126.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/releng/automate.yml | 4 |
1 files changed, 3 insertions, 1 deletions
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 |