You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From version PyTest 5.3.0+ (looks like due to #6097) when one of @parametrize test fail, the others “[…%]” indicators in the test summary have red (failed) color.
Instance:
@pytest.mark.parametrize('example', range(10))
def test_test(example):
if example == 3:
assert False
else:
assert True
As far as I know, this is intended - for longer testsuites with a lot of output, it's quite nice to see whether something failed but already scrolled off the screen.
From version PyTest 5.3.0+ (looks like due to #6097) when one of @parametrize test fail, the others “[…%]” indicators in the test summary have red (failed) color.
Instance:
Pip:
The text was updated successfully, but these errors were encountered: