Use Pathlib to delete testfile
This commit is contained in:
parent
49aa34c6f3
commit
b1feb69ca9
@ -1,5 +1,4 @@
|
|||||||
# pragma pylint: disable=missing-docstring,W0212,C0103
|
# pragma pylint: disable=missing-docstring,W0212,C0103
|
||||||
import os
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from unittest.mock import ANY, MagicMock
|
from unittest.mock import ANY, MagicMock
|
||||||
@ -192,10 +191,7 @@ def test_start_no_data(mocker, hyperopt_conf) -> None:
|
|||||||
start_hyperopt(pargs)
|
start_hyperopt(pargs)
|
||||||
|
|
||||||
# Cleanup since that failed hyperopt start leaves a lockfile.
|
# Cleanup since that failed hyperopt start leaves a lockfile.
|
||||||
try:
|
Path(Hyperopt.get_lock_filename(hyperopt_conf)).unlink(missing_ok=True)
|
||||||
os.unlink(Hyperopt.get_lock_filename(hyperopt_conf))
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
def test_start_filelock(mocker, hyperopt_conf, caplog) -> None:
|
def test_start_filelock(mocker, hyperopt_conf, caplog) -> None:
|
||||||
|
Loading…
Reference in New Issue
Block a user