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
view_tests_description=f'(press t to view tests executed for this mutant)'
1424
+
1422
1425
matchstatus:
1423
1426
case'killed':
1424
-
description=f'Killed ({exit_code=}): Mutant got detected by a test.'
1427
+
description=f'Killed ({exit_code=}): Mutant caused a test to fail 🎉'
1425
1428
case'survived':
1426
-
description=f'Survived ({exit_code=}): No test detected this mutant.'
1429
+
description=f'Survived ({exit_code=}): No test detected this mutant.{view_tests_description}'
1427
1430
case'skipped':
1428
1431
description=f'Skipped ({exit_code=})'
1429
1432
case'check was interrupted by user':
1430
-
description=f'User interrupt ({exit_code=})'
1433
+
description=f'User interrupted ({exit_code=})'
1431
1434
case'timeout':
1432
-
description=f'Timeout ({exit_code=}): Timed out because tests did not finish within {duration:.3f} seconds. Tests without mutation took {estimated_duration:.3f} seconds.'
1435
+
description= (f'Timeout ({exit_code=}): Timed out because tests did not finish within {duration:.3f} seconds. '
1436
+
f'Tests without mutation took {estimated_duration:.3f} seconds. {view_tests_description}')
1433
1437
case'no tests':
1434
1438
description=f'Untested ({exit_code=}): Skipped because selected tests do not execute this code.'
1435
1439
case'segfault':
1436
1440
description=f'Segfault ({exit_code=}): Running pytest with this mutant segfaulted.'
0 commit comments