Save output files, clean up game resources and push agents if requested.
(self)
| 210 | "-zcf", |
| 211 | str(archive), |
| 212 | "-C", |
| 213 | str(round_dir.parent), |
| 214 | str(round_num_zero_indexed), |
| 215 | ] |
| 216 | self.logger.info( |
| 217 | f"Compressing round {round_num_zero_indexed} logs, this might take a while... ({' '.join(cmd)})" |
| 218 | ) |
| 219 | result = subprocess.run(cmd, capture_output=True, text=True) |
no test coverage detected