chg: create the snapshot parent directory if it does not exist (#43)
This commit is contained in:
Родитель
9cd8a44b46
Коммит
019d346c3f
|
@ -57,6 +57,8 @@ class LocalStorage(BaseStorage):
|
|||
|
||||
snapshot_path = baseline_path.parent / 'snapshots' / f'{baseline_id}_{run_id}.png'
|
||||
|
||||
snapshot_path.parent.mkdir(exist_ok=True)
|
||||
|
||||
baseline_path.touch()
|
||||
|
||||
baseline_path.write_bytes(baseline)
|
||||
|
|
Загрузка…
Ссылка в новой задаче