Skip to content

Commit 5dd1302

Browse files
Merge branch 'master' into pr/cy-boards
2 parents d63e723 + 1bbbe70 commit 5dd1302

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/mbed-greentea/mbed_greentea/mbed_greentea_cli.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ def dump_report_to_text_file(filename, content):
983983
"""
984984
try:
985985
with io.open(filename, encoding="utf-8", errors="backslashreplace", mode="w") as f:
986-
f.write(content.decode('utf-8'))
986+
f.write(content)
987987
except IOError as e:
988988
gt_logger.gt_log_err("can't export to '%s', reason:"% filename)
989989
gt_logger.gt_log_err(str(e))
@@ -1049,10 +1049,8 @@ def dump_report_to_text_file(filename, content):
10491049
if test_platforms_match == 0:
10501050
# No tests were executed
10511051
gt_logger.gt_log_warn("no platform/target matching tests were found!")
1052-
test_exec_retcode += -10
10531052
if target_platforms_match == 0:
10541053
# No platforms were tested
10551054
gt_logger.gt_log_warn("no matching platforms were found!")
1056-
test_exec_retcode += -100
10571055

10581056
return (test_exec_retcode)

src/mbed_os_tools/detect/platform_database.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
u"0715": u"NUCLEO_L053R8",
121121
u"0720": u"NUCLEO_F401RE",
122122
u"0725": u"NUCLEO_F030R8",
123+
u"0729": u"NUCLEO_G071RB",
123124
u"0730": u"NUCLEO_F072RB",
124125
u"0735": u"NUCLEO_F334R8",
125126
u"0740": u"NUCLEO_F411RE",

0 commit comments

Comments
 (0)