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 a547d96 commit c08cd14Copy full SHA for c08cd14
codeflash/verification/parse_test_output.py
@@ -238,7 +238,9 @@ def parse_test_xml(
238
test_class_path = testcase.classname
239
try:
240
if testcase.name is None:
241
- logger.debug(f"testcase.name is None for testcase {testcase!r} in file {test_xml_file_path}, skipping")
+ logger.debug(
242
+ f"testcase.name is None for testcase {testcase!r} in file {test_xml_file_path}, skipping"
243
+ )
244
continue
245
test_function = testcase.name.split("[", 1)[0] if "[" in testcase.name else testcase.name
246
except (AttributeError, TypeError) as e:
0 commit comments