disabling the failure marks if the screenshot fails

This commit is contained in:
thelamer 2018-07-29 12:35:06 -07:00
parent 54f6668cd6
commit 55bb63f20a

View File

@ -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)