Commit 1ecd1c2b authored by Wallen姚文辉's avatar Wallen姚文辉

修复bug

parent db718da2
......@@ -123,11 +123,13 @@ def reportinfo():
k=m.get("assignee").get("displayName")
if k not in i["peoples"]:
i["peoples"].append(k)
if (("测试" in m.get("summary") or "用例" in m.get("summary")) and k and k not in peoples["test"]) :
if (k and ( k in peoples["test"] or k in peoples["qian"] or k in peoples["hou"])) or not k:
continue
elif ("测试" in m.get("summary") or "用例" in m.get("summary")):
peoples["test"].append(k)
elif "前端" in m.get("summary") and k and k not in peoples["qian"]:
elif "前端" in m.get("summary"):
peoples["qian"].append(k)
elif "后端" in m.get("summary") and k and k not in peoples["hou"]:
elif "后端" in m.get("summary"):
peoples["hou"].append(k)
i["childrenTask"].append(m.get("key"))
elif j.get("tabId")=="THIRD_PARTY_TAB":
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment