fix(ci): 修复自动合并竞态问题 - auto-merge 需等待 auto-approve 完成 #1648

Closed
xiaoxia wants to merge 1 commits from fix/auto-merge-race-condition into develop
+3 -3
View File
@@ -707,9 +707,9 @@ class TestStrayLoggerRemoved:
source = inspect.getsource(generation_cover)
# The stray call was logger.info(\n plan_id,\n generation_task_id,\n)
# with no format string — should not exist
assert "logger.info(\n plan_id," not in source, (
"Stray logger.info(plan_id, generation_task_id) should be removed"
)
assert (
"logger.info(\n plan_id," not in source
), "Stray logger.info(plan_id, generation_task_id) should be removed"
class TestUploadCoverType: