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