(mutation_dir: str, dataset: str)
| 62 | |
| 63 | |
| 64 | def mutants_eval(mutation_dir: str, dataset: str): |
| 65 | args = argparse.Namespace( |
| 66 | dataset=dataset, |
| 67 | samples=mutation_dir, |
| 68 | base_only=False, |
| 69 | parallel=None, |
| 70 | i_just_wanna_run=False, |
| 71 | test_details=True, |
| 72 | min_time_limit=0.2, |
| 73 | gt_time_limit_factor=4.0, |
| 74 | mini=False, |
| 75 | ) |
| 76 | print("Evaluating mutants... ", end="", flush=True) |
| 77 | with swallow_io(): |
| 78 | evaluate(args) |
| 79 | print("Done") |
| 80 | |
| 81 | |
| 82 | def collect_mutation_info( |
no test coverage detected