I have defined an email template like this:
version changes:
.....
Unstable:${CHANGES_SINCE_LAST_UNSTABLE,reverse=true}
Trigger reason:${CAUSE}
Test_Counts:${TEST_COUNTS}
Fail_Test_Counts:${TEST_COUNTS,var=fail}
Skip_Test_Counts:${TEST_COUNTS,var="skip"}
......
After each building,the module owner will receive an email like this:
Check console output at http://localhost:8080/hudson-2.2.1/job/test1/52/ to view the results.
Unstable:Changes for Build #52
Trigger reason:Started by user anonymous
Test_Counts:${TEST_COUNTS}
Fail_Test_Counts:${TEST_COUNTS,var=fail}
Skip_Test_Counts:${TEST_COUNTS,var="skip"}
So she/he will know detailed building result,most importantly:if any errors comes up,timely.
Questions:
1,As you can see,${TEST_COUNTS}... didn't get replaced by hudson automatically.why?
2,Does any Email token like: ${ERROR_STACK_INFORMATION} exist to allow be defined in email template to send error stack to module owner?
By the way,I am using
Hudson 2.2.1