jenkins没有跑新的junittestingpipe道

在我进行junittesting后,jenkinsfind了他们,但是报告存在一些问题。

这是我的pipe道:

pipeline { agent { node { label 'agent1' } } stages { stage('Build') { steps { git "https://github.com/vforv/hapi-seneca-ts" sh ''' ./system/fuge/ci/docker-up.sh ./system/fuge/ci/docker-down.sh ''' } } stage('Test') { steps { sh ''' ./system/fuge/ci/docker-up-test.sh ''' sh ''' mkdir -p test docker cp devtest_api_1:home/app/test/api.xml test/api.xml ''' } } } post { always { junit 'test/*.xml' } } } 

这是我得到的错误:

错误:testing报告被发现,但没有一个是新的。 testing运行了吗? 例如,,,, seneca / test / api.xml是27秒

什么可能是一个问题?