junit - How to get Jenkins to show skipped tests using email-ext? -


i using email-ext plugin within jenkins display passed failed, , email has nice blue passed methods , red failed. not including ignored tests within class. shouldn't annotations junit's @ignore display skipped in junit results via email-ext?

i using html_gmail template so: ${jelly_script,template="html_gmail"}

and using following tokens in extendable email notificatin config:

total amount of tests: ${test_counts, var}

total = $test_counts failed = ${test_counts,var="fail"}

total = $test_counts passed = ${test_counts,var="pass"}

is there an: ignore = ${test_counts,var=skipped") ????

share|improve question
    
the doc says: ${test_counts, var} displays number of tests. var defaults "total". total number of tests. pass number of passed tests. fail number of failed tests. skip number of skipped tests. – stéphane bruckert may 6 '13 @ 13:01
up vote 4 down vote accepted

yes -

${test_counts,var="skip"} 

take @ source code of testcountscontent.java

share|improve answer

your answer

 
discard

posting answer, agree privacy policy , terms of service.

not answer you're looking for? browse other questions tagged or ask own question.

Comments