File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
buildSrc/src/test/kotlin/datadog/gradle/plugin/muzzle/tasks Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -450,12 +450,16 @@ test_published_artifacts:
450450 - source .gitlab/gitlab-utils.sh
451451 - gitlab_section_start "collect-reports" "Collecting reports"
452452 - .gitlab/collect_reports.sh --destination ./check_reports --move
453+ - .gitlab/collect_results.sh
453454 - gitlab_section_end "collect-reports"
454455 artifacts :
455456 when : always
456457 paths :
457458 - ./check_reports
459+ - ./results
458460 - ' .gradle/daemon/*/*.out.log'
461+ reports :
462+ junit : results/*.xml
459463 retry :
460464 max : 2
461465 when :
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ class MuzzleEndTaskTest {
9090 assertNotNull(failedTestCase)
9191 val failureNode = failedTestCase.getElementsByTagName(" failure" ).item(0 ) as Element
9292 assertEquals(" Muzzle validation failed" , failureNode.getAttribute(" message" ))
93- assertEquals(" java.lang.IllegalStateException: broken helper " , failureNode.textContent)
93+ assertEquals(" java.lang.IllegalStateException: something is broken " , failureNode.textContent)
9494 }
9595
9696 @Test
You can’t perform that action at this time.
0 commit comments