Jenkins allure-report is not created properly from pipeline, but is manually -


scenario: jenkins pipeline passing no problem, claims report generated, when navigate report directory, not exist. if copy command jenkins log , run on machine manually, report exist.

i sense possible permissions/account problem here?

c:\program files (x86)\jenkins\tools\ru.yandex.qatools.allure.jenkins.tools.allurecommandlineinstallation\allure_report\allure-2.3.4\bin\allure.bat" generate "c:\program files (x86)\jenkins\workspace\censored automation pipeline\censored-automation\target\allure-results" -o "c:\program files (x86)\jenkins\workspace\censored automation pipeline\allure-report" report generated c:\program files (x86)\jenkins\workspace\censored automation pipeline\allure-report 

after pipeline finished running, states report successful, report non existent:

enter image description here

pipeline reporting:

}    stage('generating automation reports...') {       //generate allure report test run       allure includeproperties: false, jdk: '', results: [[path: 'censored-automation/target/allure-results']]     } 

allure global configuration:

enter image description here

did add allure tools definition ?


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -