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

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -