We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56ba666 commit a6bfe3aCopy full SHA for a6bfe3a
mutmut/__main__.py
@@ -1174,7 +1174,7 @@ def stop_all_children(mutants):
1174
1175
1176
def timeout_checker(mutants):
1177
- def inner():
+ def inner_timout_checker():
1178
while True:
1179
sleep(1)
1180
@@ -1184,7 +1184,7 @@ def inner():
1184
run_time = now - start_time
1185
if run_time.total_seconds() > (m.estimated_time_of_tests_by_mutant[mutant_name] + 1) * 4:
1186
os.kill(pid, signal.SIGXCPU)
1187
- return inner
+ return inner_timout_checker
1188
1189
1190
@cli.command()
0 commit comments