From d80f8cfc7d238202d90761753c35d83ee36ce893 Mon Sep 17 00:00:00 2001 From: Richard Alpe Date: Mon, 2 Oct 2023 09:50:53 +0200 Subject: [PATCH] 9pm: add new result file with github emojis Signed-off-by: Richard Alpe --- .github/workflows/main.yml | 2 +- 9pm.py | 33 ++++++++++++++++++++++++++++----- 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 16d14f2..7abe0b6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,4 +28,4 @@ jobs: run: python3 9pm.py --option cmdl-supplied unit_tests/auto.yaml - name: Publish Test Result - run: cat ~/9pm_log/last/result.md >> $GITHUB_STEP_SUMMARY + run: cat ~/9pm_log/last/result-gh.md >> $GITHUB_STEP_SUMMARY diff --git a/9pm.py b/9pm.py index ecf04c9..c4b49ac 100755 --- a/9pm.py +++ b/9pm.py @@ -240,20 +240,43 @@ def parse_suite(fpath, pname, options, name=None): sys.exit(1) return suite -def write_result_md_tree(md, data, base): +def get_github_emoji(result): + if result == "pass": + return ":white_check_mark:" + if result == "fail": + return ":red_circle:" + if result == "skip": + return ":large_orange_diamond:" + if result == "masked-fail": + return ":o:" + if result == "masked-skip": + return ":small_orange_diamond:" + + return result + +def write_result_md_tree(md, gh, data, base): for test in data['suite']: with open(md, 'a') as file: file.write("{}- {} : {}\n".format(base, test['result'].upper(), test['name'])) + with open(gh, 'a') as file: + mark = get_github_emoji(test['result']) + file.write("{}- {} : {}\n".format(base, mark, test['name'])) + if 'suite' in test: - write_result_md_tree(md, test, base + " ") + write_result_md_tree(md, gh, test, base + " ") -def write_result_md(data): +def write_result_files(data): md = os.path.join(LOGDIR, 'result.md') + gh = os.path.join(LOGDIR, 'result-gh.md') with open(md, 'a') as file: file.write("# Test Result\n") - write_result_md_tree(md, data, "") + + with open(gh, 'a') as file: + file.write("# Test Result\n") + + write_result_md_tree(md, gh, data, "") def print_result_tree(data, base): i = 1 @@ -509,7 +532,7 @@ def main(): cprint(pcolor.green, "\no Execution") print_result_tree(cmdl, "") - write_result_md(cmdl) + write_result_files(cmdl) db.close() sys.exit(err)