Commit fab3bec1 authored by Raphael Defosseux's avatar Raphael Defosseux

Merge branch 'fix-html' into 'develop'

fix(ci): openshift test result does not have git summary

See merge request oai/cn5g/oai-cn5g-smf!80
parents fe6b464f a3ecdaa4
......@@ -67,7 +67,8 @@ pipeline {
"Build RHEL8 SMF Image",
"Static Code Analysis",
"Code Formatting Checker",
"Test with DsTester"
"Test with DsTester on Docker environment",
"Test with DsTester on OC environment"
])
}
......
......@@ -161,7 +161,9 @@ class HtmlReport():
self.file.write(buildSummary)
cwd = os.getcwd()
for reportFile in glob.glob('./*results_oai_cn5g.html'):
for reportFile in glob.glob('./*results_oai_*.html'):
if reportFile == './test_results_oai_smf.html':
continue
newEpcReport = open(cwd + '/' + str(reportFile) + '.new', 'w')
buildSummaryDone = True
with open(cwd + '/' + str(reportFile), 'r') as originalEpcReport:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment