We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da4a169 commit 71fe5e8Copy full SHA for 71fe5e8
tools/test.py
@@ -185,7 +185,10 @@
185
report_exporter = ReportExporter(ResultExporterType.JUNIT, package="build")
186
report_exporter.report_to_file(build_report, options.build_report_junit, test_suite_properties=build_properties)
187
188
- if library_build_success and test_build_success:
+ print_report_exporter = ReportExporter(ResultExporterType.PRINT, package="build")
189
+ status = print_report_exporter.report(build_report)
190
+
191
+ if status:
192
sys.exit(0)
193
else:
194
sys.exit(1)
0 commit comments