fix: Automatically remove failed runs.

pull/42/head
Raphaël Vinot 2019-03-27 10:21:37 +01:00
parent 5d66e6b8d0
commit 49654b6b11
1 changed files with 1 additions and 0 deletions

View File

@ -52,6 +52,7 @@ class Lookyloo():
har_files = sorted(report_dir.glob('*.har'))
if not har_files:
self.logger.warning(f'No har files in {report_dir}')
report_dir.rmdir()
return
with (report_dir / 'uuid').open() as f:
uuid = f.read().strip()