Skip to content

Commit

Permalink
Merge pull request #382 from jglick/reporting-INFRA-1404
Browse files Browse the repository at this point in the history
[INFRA-1404] Use junit-attachments & junit-realtime-test-reporter plugins
  • Loading branch information
olivergondza committed Nov 20, 2017
2 parents 225af07 + b88a182 commit 68b170f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Jenkinsfile
Expand Up @@ -12,16 +12,16 @@ pipeline {
stages {
stage('Run ATH') {
steps {
sh '''
eval $(./vnc.sh)
./run.sh firefox latest -Dmaven.test.failure.ignore=true -DforkCount=1 -B
script { // TODO pending proper solution for JENKINS-43353
for (int i = 0; i < (BUILD_NUMBER as int); i++) {milestone()}
}
realtimeJUnit(testResults: 'target/surefire-reports/TEST-*.xml', testDataPublishers: [[$class: 'AttachmentPublisher']]) {
sh '''
eval $(./vnc.sh)
./run.sh firefox latest -Dmaven.test.failure.ignore=true -DforkCount=1 -B
'''
}
}
}
}
post {
always {
junit 'target/surefire-reports/TEST-*.xml'
}
}
}

0 comments on commit 68b170f

Please sign in to comment.