Skip to content

Commit

Permalink
fix: 修复测试输出问题 (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
BigOrangeQWQ authored Nov 19, 2024
1 parent 2d46c28 commit 395d1ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugins/github/plugins/publish/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ async def validate_plugin_info_from_issue(
)
logger.info(f"插件元数据:{metadata}")
logger.info("插件测试输出:")
for output in test_output:
for output in test_result.outputs:
logger.info(output)

# 验证插件相关信息
Expand Down
2 changes: 1 addition & 1 deletion src/providers/store_test/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ async def validate_plugin(
)
click.echo(f"插件元数据:{plugin_metadata}")
click.echo("插件测试输出:")
for output in plugin_test_output:
for output in plugin_test_result.outputs:
click.echo(output)

if previous_plugin is None:
Expand Down

0 comments on commit 395d1ae

Please sign in to comment.