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 653f780 commit ca49c29Copy full SHA for ca49c29
internal/process_test.py
@@ -221,6 +221,8 @@ def merge_custom_metrics(self):
221
value = int(value)
222
elif re.match(r'^[0-9]*\.[0-9]+$', value):
223
value = float(value)
224
+ else:
225
+ value = value.strip()
226
if name == 'test_result':
227
# Only use a custom value for a test result if it is explicitly set
228
if value:
0 commit comments