Skip to content

Commit

Permalink
Merge pull request #1700 from schylek/nb
Browse files Browse the repository at this point in the history
VPA - fix names of files with junit test results
  • Loading branch information
k8s-ci-robot authored Feb 18, 2019
2 parents c3c5714 + 8d885bb commit eff42b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vertical-pod-autoscaler/e2e/v1beta1/e2e.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ func RunE2ETests(t *testing.T) {
if err := os.MkdirAll(framework.TestContext.ReportDir, 0755); err != nil {
glog.Errorf("Failed creating report directory: %v", err)
} else {
r = append(r, reporters.NewJUnitReporter(path.Join(framework.TestContext.ReportDir, fmt.Sprintf("v1_beta1_junit_%v%02d.xml", framework.TestContext.ReportPrefix, config.GinkgoConfig.ParallelNode))))
r = append(r, reporters.NewJUnitReporter(path.Join(framework.TestContext.ReportDir, "junit_02.xml")))
}
}
glog.Infof("Starting e2e run %q on Ginkgo node %d", framework.RunId, config.GinkgoConfig.ParallelNode)
Expand Down
2 changes: 1 addition & 1 deletion vertical-pod-autoscaler/e2e/v1beta2/e2e.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ func RunE2ETests(t *testing.T) {
if err := os.MkdirAll(framework.TestContext.ReportDir, 0755); err != nil {
glog.Errorf("Failed creating report directory: %v", err)
} else {
r = append(r, reporters.NewJUnitReporter(path.Join(framework.TestContext.ReportDir, fmt.Sprintf("junit_%v%02d.xml", framework.TestContext.ReportPrefix, config.GinkgoConfig.ParallelNode))))
r = append(r, reporters.NewJUnitReporter(path.Join(framework.TestContext.ReportDir, "junit_01.xml")))
}
}
glog.Infof("Starting e2e run %q on Ginkgo node %d", framework.RunId, config.GinkgoConfig.ParallelNode)
Expand Down

0 comments on commit eff42b6

Please sign in to comment.