(self, src, dest)
| 237 | self.cmd(f"rm -fr {pathlib.Path(path)}") |
| 238 | |
| 239 | def cpdir(self, src, dest): |
| 240 | self.cmd(f"cp -r {src} {dest}") |
| 241 | |
| 242 | def tar(self, subdir, tar_filename): |
| 243 | self.cmd(f"tar zcf {tar_filename} {subdir}") |
no test coverage detected