Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Romain Courteaud
slapos.core
Commits
552dfbcc
Commit
552dfbcc
authored
Nov 25, 2024
by
Rafael Monnerat
👻
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: make _updateFunctionalTestResponse compatible with py3
parent
902d44d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
master/tests/__init__.py
master/tests/__init__.py
+6
-5
No files found.
master/tests/__init__.py
View file @
552dfbcc
...
...
@@ -110,20 +110,21 @@ class SlapOSCloud(SavedTestSuite, ProjectTestSuite):
def
_updateFunctionalTestResponse
(
self
,
status_dict
):
""" Convert the Unit Test output into more accurate information
related to funcional test run.
related to func
t
ional test run.
"""
# Parse relevant information to update response information
try
:
summary
,
html_test_result
=
status_dict
[
'stderr'
].
split
(
"-"
*
79
)[
1
:
3
]
summary
,
html_test_result
=
status_dict
[
'stderr'
].
split
(
b
"-"
*
79
)[
1
:
3
]
except
ValueError
:
# In case of error when parse the file, preserve the original
# information
s
. This prevents we have unfinished tests.
# information. This prevents we have unfinished tests.
return
status_dict
status_dict
[
'html_test_result'
]
=
html_test_result
search
=
self
.
FTEST_PASS_FAIL_RE
.
search
(
summary
)
search
=
self
.
FTEST_PASS_FAIL_RE
.
search
(
summary
.
decode
()
)
if
search
:
group_dict
=
search
.
groupdict
()
status_dict
[
'failure_count'
]
=
int
(
group_dict
[
'failures'
])
status_dict
[
'failure_count'
]
=
int
(
group_dict
[
'failures'
])
\
or
int
(
status_dict
.
get
(
'failure_count'
,
0
))
status_dict
[
'test_count'
]
=
int
(
group_dict
[
'total'
])
status_dict
[
'skip_count'
]
=
int
(
group_dict
[
'expected_failure'
])
return
status_dict
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment