File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 14
14
coverage.txt
15
15
16
16
# Ignore test reports
17
- reports /
17
+ test- * .xml
18
18
19
19
#
20
20
# GO SPECIFIC
Original file line number Diff line number Diff line change @@ -190,15 +190,15 @@ openshiftci-presubmit-unittests:
190
190
191
191
.PHONY : test-integration-cluster
192
192
test-integration-cluster :
193
- $(RUN_GINKGO ) $(GINKGO_FLAGS ) --label-filter=" !nocluster" tests/integration
193
+ $(RUN_GINKGO ) $(GINKGO_FLAGS ) --junit-report= " test-integration.xml " -- label-filter=" !nocluster" tests/integration
194
194
195
195
.PHONY : test-integration-no-cluster
196
196
test-integration-no-cluster :
197
- $(RUN_GINKGO ) $(GINKGO_FLAGS_AUTO ) --label-filter=nocluster tests/integration
197
+ $(RUN_GINKGO ) $(GINKGO_FLAGS_AUTO ) --junit-report= " test-integration-nc.xml " --label-filter=nocluster tests/integration
198
198
199
199
.PHONY : test-integration
200
200
test-integration : test-integration-no-cluster test-integration-cluster
201
201
202
202
.PHONY : test-e2e
203
203
test-e2e :
204
- $(RUN_GINKGO ) $(GINKGO_FLAGS ) tests/e2escenarios
204
+ $(RUN_GINKGO ) $(GINKGO_FLAGS ) --junit-report= " test-e2e.xml " tests/e2escenarios
Original file line number Diff line number Diff line change 55
55
fi
56
56
fi
57
57
58
+ # copy artifact to shared volume
59
+ cp -r test-* .xml $ARTIFACT_DIR
60
+
58
61
oc logout
You can’t perform that action at this time.
0 commit comments