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") ????
${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