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)'
1437
+
1435
1438
matchstatus:
1436
1439
case'killed':
1437
-
description=f'Killed ({exit_code=}): Mutant got detected by a test.'
1440
+
description=f'Killed ({exit_code=}): Mutant caused a test to fail 🎉'
1438
1441
case'survived':
1439
-
description=f'Survived ({exit_code=}): No test detected this mutant.'
1442
+
description=f'Survived ({exit_code=}): No test detected this mutant.{view_tests_description}'
1440
1443
case'skipped':
1441
1444
description=f'Skipped ({exit_code=})'
1442
1445
case'check was interrupted by user':
1443
-
description=f'User interrupt ({exit_code=})'
1446
+
description=f'User interrupted ({exit_code=})'
1444
1447
case'timeout':
1445
-
description=f'Timeout ({exit_code=}): Timed out because tests did not finish within {duration:.3f} seconds. Tests without mutation took {estimated_duration:.3f} seconds.'
1448
+
description= (f'Timeout ({exit_code=}): Timed out because tests did not finish within {duration:.3f} seconds. '
1449
+
f'Tests without mutation took {estimated_duration:.3f} seconds. {view_tests_description}')
1446
1450
case'no tests':
1447
1451
description=f'Untested ({exit_code=}): Skipped because selected tests do not execute this code.'
1448
1452
case'segfault':
1449
1453
description=f'Segfault ({exit_code=}): Running pytest with this mutant segfaulted.'
0 commit comments