﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
27423	Test command sys.exit() does unnecessary casting	Ana Balica	Ana Balica	"Currently we have:

{{{
if failures:
    sys.exit(bool(failures))
}}}

If no failures, the script will exit with 0 success, if any failures, then the exit is forced with a `False` value, which will result in a 1.
Why not be explicit?

{{{
if failures:
    sys.exit(1)
}}}"	Cleanup/optimization	closed	Testing framework	1.10	Normal	fixed	test		Ready for checkin	1	0	0	0	1	0
