docker - Jenkins not runing new junit test pipeline -
after genereate junit test jenkins find them there problem reports.
here pipeline:
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 { { junit 'test/*.xml' } } }
this error get:
error: test reports found none of them new. did tests run? example, ,,,seneca/test/api.xml 27 sec old
what can problem?
Comments
Post a Comment