Skip to content

Commit

Permalink
Adding more info about skipped tests to notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Jan 11, 2019
1 parent 5dbab2e commit 535eb7e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ protected void skipped(AssumptionViolatedException e, Description description) {
map.put("testcase", description.getMethodName());
map.put("job_id", jobId);
map.put("result", "skipped");
map.put("exception", e.getClass().getName());
map.put("message", e.getMessage());
map.put("stacktrace", stacktraceToString(e));
map.put("started_at", startedAt);
map.put("finished_at", finishedAt);
Expand Down

0 comments on commit 535eb7e

Please sign in to comment.