Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
ioppytest
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
f-interop-contributors
ioppytest
Commits
1c4cc0c9
Commit
1c4cc0c9
authored
Oct 10, 2018
by
Federico Sismondi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix error trying to do message rendering for test case verdict
parent
6de25b86
Pipeline
#3111
failed with stage
in 0 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
ioppytest/ui_adaptor/message_rendering.py
ioppytest/ui_adaptor/message_rendering.py
+1
-3
No files found.
ioppytest/ui_adaptor/message_rendering.py
View file @
1c4cc0c9
...
...
@@ -138,8 +138,6 @@ def testcase_verdict_to_ascii_table(testcase_verdict_report):
(
'testcase_id'
,
'Test case ID'
),
(
'objective'
,
'Test Purpose'
),
(
'testcase_ref'
,
'Test case URL'
),
(
'pre_conditions'
,
'Pre-conditions'
),
]
for
i
in
step_message_fields
:
...
...
@@ -149,7 +147,7 @@ def testcase_verdict_to_ascii_table(testcase_verdict_report):
col2
=
list_to_str
(
col2
)
# flattens info
table
.
append
([
col1
,
col2
])
except
KeyError
as
e
:
logger
.
warning
(
e
)
logger
.
warning
(
"Non existing message field. Got exception:
%
s"
%
e
)
ret_string
+=
"
\n
=== Verdict info ==="
ret_string
+=
"
\n
"
...
...
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