Limited Time Offer!

For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!

Enroll Now

Jenkins Pipeline: Code coveragenusing JaCoCo


stage("Code coverage") 
{     
	steps {          
			sh "./gradlew jacocoTestReport"          
			publishHTML (target: [reportDir: 'build/reports/jacoco/test/html',               reportFiles: 'index.html',reportName: "JaCoCo Report"])          
			sh "./gradlew jacocoTestCoverageVerification"     
			}
}

Rajesh Kumar
Follow me
Latest posts by Rajesh Kumar (see all)
Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x