From 4c1664a0cfe7eb9e8b53ee89fb2adf75f1c66b0e Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 24 May 2020 11:00:23 -0700 Subject: [PATCH] use actual yml --- ci/ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/ci.py b/ci/ci.py index 69232af..05fb58c 100755 --- a/ci/ci.py +++ b/ci/ci.py @@ -294,7 +294,7 @@ def badge_render(): badge = anybadge.Badge('CI', report_status, thresholds={'PASS': 'green', 'FAIL': 'red'}) badge.write_badge(outdir + 'badge.svg') with open(outdir + 'ci-status.yml', 'w') as f: - f.write(report_status) + f.write('CI: "' + report_status + '"') except Exception as error: print(error)