Skip to content

Commit ba598ab

Browse files
committed
ci: robotstatuschecker api change fix
1 parent eff0f22 commit ba598ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

atest/run.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
)
3636
if rc > 250:
3737
sys.exit(rc)
38-
process_output(output, verbose=False)
38+
process_output(output)
3939
output = join(
4040
outdir,
4141
"lib-DynamicTypesLibrary-python-{}-robot-{}.xml".format(python_version, RF_VERSION),
@@ -52,12 +52,12 @@
5252
)
5353
if rc > 250:
5454
sys.exit(rc)
55-
process_output(output, verbose=False)
55+
process_output(output)
5656
output = join(outdir, "lib-PluginApi-python-{}-robot-{}.xml".format(python_version, RF_VERSION))
5757
rc = run(plugin_api, name="Plugin", output=output, report=None, log=None, loglevel="debug")
5858
if rc > 250:
5959
sys.exit(rc)
60-
process_output(output, verbose=False)
60+
process_output(output)
6161
print("\nCombining results.")
6262
library_variants.append("DynamicTypesLibrary")
6363
xml_files = [str(xml_file) for xml_file in Path(outdir).glob("*.xml")]

0 commit comments

Comments
 (0)