mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-03 12:50:06 +06:00
[auto. ping] Avoid sending empty info + add more team members (#34383)
* update * update --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
This commit is contained in:
parent
4c6e0c9252
commit
a308d28d39
@ -106,7 +106,7 @@ jobs:
|
||||
} >> "$GITHUB_ENV"
|
||||
|
||||
- name: Send processed report
|
||||
if: ${{ env.REPORT_TEXT != '' }}
|
||||
if: ${{ !endsWith(env.REPORT_TEXT, '{}') }}
|
||||
uses: slackapi/slack-github-action@6c661ce58804a1a20f6dc5fbee7f0381b469e001
|
||||
with:
|
||||
# Slack channel id, channel name, or user id to post message.
|
||||
|
@ -182,7 +182,15 @@ if __name__ == "__main__":
|
||||
info = {"test": test, "commit": commit}
|
||||
info.update(get_commit_info(commit))
|
||||
failed_tests_with_bad_commits.append(info)
|
||||
reports[model]["single-gpu"] = failed_tests_with_bad_commits
|
||||
|
||||
# If no single-gpu test failures, remove the key
|
||||
if len(failed_tests_with_bad_commits) > 0:
|
||||
reports[model]["single-gpu"] = failed_tests_with_bad_commits
|
||||
else:
|
||||
reports[model].pop("single-gpu", None)
|
||||
|
||||
# remove the models without any test failure
|
||||
reports = {k: v for k, v in reports.items() if len(v) > 0}
|
||||
|
||||
with open(args.output_file, "w", encoding="UTF-8") as fp:
|
||||
json.dump(reports, fp, ensure_ascii=False, indent=4)
|
||||
|
@ -28,7 +28,18 @@ if __name__ == "__main__":
|
||||
data = json.load(fp)
|
||||
|
||||
# TODO: extend
|
||||
team_members = ["ydshieh", "zucchini-nlp", "ArthurZucker", "gante", "LysandreJik", "molbap", "qubvel"]
|
||||
team_members = [
|
||||
"ydshieh",
|
||||
"zucchini-nlp",
|
||||
"ArthurZucker",
|
||||
"gante",
|
||||
"LysandreJik",
|
||||
"molbap",
|
||||
"qubvel",
|
||||
"Rocketknight1",
|
||||
"muellerzr",
|
||||
"SunMarc",
|
||||
]
|
||||
|
||||
# Counting the number of failures grouped by authors
|
||||
new_data = {}
|
||||
|
Loading…
Reference in New Issue
Block a user