Commit 4c9706a9 authored by Raphael Defosseux's avatar Raphael Defosseux

chore(ci): little syntax diffs post-upgrade on obelix

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent 97b08440
...@@ -283,7 +283,7 @@ class StaticCodeAnalysis(): ...@@ -283,7 +283,7 @@ class StaticCodeAnalysis():
if re.search('=== Files with incorrect define protection ===', str(line)) is not None: if re.search('=== Files with incorrect define protection ===', str(line)) is not None:
circularHeaderDependency = True circularHeaderDependency = True
if circularHeaderDependency: if circularHeaderDependency:
if re.search('Removing intermediate container', str(line)) is not None: if re.search('DONE', str(line)) is not None:
circularHeaderDependency = False circularHeaderDependency = False
elif re.search('Running in|Files with incorrect define protection', str(line)) is not None: elif re.search('Running in|Files with incorrect define protection', str(line)) is not None:
pass pass
...@@ -293,7 +293,7 @@ class StaticCodeAnalysis(): ...@@ -293,7 +293,7 @@ class StaticCodeAnalysis():
if re.search('=== Files with a GNU GPL licence Banner ===', str(line)) is not None: if re.search('=== Files with a GNU GPL licence Banner ===', str(line)) is not None:
gnuGplLicence = True gnuGplLicence = True
if gnuGplLicence: if gnuGplLicence:
if re.search('Removing intermediate container', str(line)) is not None: if re.search('DONE', str(line)) is not None:
gnuGplLicence = False gnuGplLicence = False
elif re.search('Running in|Files with a GNU GPL licence Banner', str(line)) is not None: elif re.search('Running in|Files with a GNU GPL licence Banner', str(line)) is not None:
pass pass
...@@ -303,7 +303,7 @@ class StaticCodeAnalysis(): ...@@ -303,7 +303,7 @@ class StaticCodeAnalysis():
if re.search('=== Files with a suspect Banner ===', str(line)) is not None: if re.search('=== Files with a suspect Banner ===', str(line)) is not None:
suspectLicence = True suspectLicence = True
if suspectLicence: if suspectLicence:
if re.search('Removing intermediate container', str(line)) is not None: if re.search('DONE', str(line)) is not None:
suspectLicence = False suspectLicence = False
elif re.search('Running in|Files with a suspect Banner', str(line)) is not None: elif re.search('Running in|Files with a suspect Banner', str(line)) is not None:
pass pass
...@@ -340,7 +340,7 @@ class StaticCodeAnalysis(): ...@@ -340,7 +340,7 @@ class StaticCodeAnalysis():
html_cell = f'Number of files not respecting: {len(gnuGplLicenceFiles)}\n' html_cell = f'Number of files not respecting: {len(gnuGplLicenceFiles)}\n'
for nFile in gnuGplLicenceFiles: for nFile in gnuGplLicenceFiles:
html_cell += str(nFile).strip() + '\n' html_cell += str(nFile).strip() + '\n'
HTML.CreateHtmlTestRowQueue('Files w/ GNU GPL License', 'KO', html_queue) HTML.CreateHtmlTestRowQueue('Files w/ GNU GPL License', 'KO', [html_cell])
del(html_cell) del(html_cell)
finalStatus = -1 finalStatus = -1
......
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