Conditions had virtually no effect, lets activate them.
Activating them implies either:
- Using built-in
assert <condition>
, which is terse but skipped in optimized Python executions. - Using
assert_equal(True, <condition>)
, which is overly verbose.
Instead we introduce assert_true(<condition>)
, inspired by Google Test (discussed in #30529 (review)).