From 55bb63f20a65ad082d21815fa4f23b20d6fd90ac Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 29 Jul 2018 12:35:06 -0700 Subject: [PATCH] disabling the failure marks if the screenshot fails --- ci/ci.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/ci.py b/ci/ci.py index 50241b1..0752888 100755 --- a/ci/ci.py +++ b/ci/ci.py @@ -313,7 +313,7 @@ report_render() badge_render() report_upload() # Exit based on test results -if report_status == 'pass': +if report_status == 'PASS': sys.exit(0) -elif report_status == 'fail': +elif report_status == 'FAIL': sys.exit(1)