junit - jenkins test results to Zephyr -
i have junit tests run each push git via jenkins report test results zephyr jira.
i doing using jenkins pipeline, pipeline code:
node{ stage 'connect git' .... stage 'run test' sh 'ant test' stage 'report test result' step ([class: 'junitresultarchiver' , testresults="reports/test-*.xml"]) step ([class: 'zfjreporter', serveradress:'....', projectkey:'....', versionkey:'1', cyclekey:'createnewcycle', cycleduration:'1 days', cycleprefix='']) }
when running last stage next error: 'no known implementation of interface jenkins.tasks.simplebuildstep named zfjreporter'
can please me. not fina answer issue.
thanks.
i suspect have found comment on this jira issue:
"i add compatibility pipeline plugin, can run step of zephyr fro jita test management plugin"
the commenter, ivan fernandez calvo, linked this pull request, implemented changes. unfortunately, pull request, though filed in 2016, never merged (as of 20 aug 2017).
so think you're out of luck in terms of using plugin in jenkinsfile @ point. sorry. :(
Comments
Post a Comment