This is an automated email from the ASF dual-hosted git repository.
pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 3499284 Add Junit results reporter to python postcommits
3499284 is described below
commit 3499284265eba1224179681b3f3c810ba25b3bed
Author: Mikhail Gryzykhin <[email protected]>
AuthorDate: Wed Aug 15 10:19:38 2018 -0700
Add Junit results reporter to python postcommits
---
.test-infra/jenkins/job_PostCommit_Go_GradleBuild.groovy | 1 -
.test-infra/jenkins/job_PostCommit_Python_Verify.groovy | 6 ++++++
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/.test-infra/jenkins/job_PostCommit_Go_GradleBuild.groovy
b/.test-infra/jenkins/job_PostCommit_Go_GradleBuild.groovy
index 92de7ea..c3383c3 100644
--- a/.test-infra/jenkins/job_PostCommit_Go_GradleBuild.groovy
+++ b/.test-infra/jenkins/job_PostCommit_Go_GradleBuild.groovy
@@ -19,7 +19,6 @@
import CommonJobProperties as commonJobProperties
import PostcommitJobBuilder
-
// This is the Go postcommit which runs a gradle build, and the current set
// of postcommit tests.
PostcommitJobBuilder.postCommitJob('beam_PostCommit_Go_GradleBuild', 'Run Go
PostCommit',
diff --git a/.test-infra/jenkins/job_PostCommit_Python_Verify.groovy
b/.test-infra/jenkins/job_PostCommit_Python_Verify.groovy
index 7e2a3f8..c80a74d 100644
--- a/.test-infra/jenkins/job_PostCommit_Python_Verify.groovy
+++ b/.test-infra/jenkins/job_PostCommit_Python_Verify.groovy
@@ -37,4 +37,10 @@
PostcommitJobBuilder.postCommitJob('beam_PostCommit_Python_Verify', 'Run Python
commonJobProperties.setGradleSwitches(delegate)
}
}
+
+ // Publish all test results to Jenkins. Note that Nose documentation
+ // specifically mentions that it produces JUnit compatible test results.
+ publishers {
+ archiveJunit('**/nosetests.xml')
+ }
}