Skip to content

Commit

Permalink
Fix conftest.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Argmaster committed Feb 4, 2025
1 parent ba2c377 commit 7f703df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def asset_loader() -> AssetLoader:

start_time = datetime.datetime.now(tz=tzlocal.get_localzone())
log_file_path = (
Path.cwd() / "log" / "test" / f"{start_time.strftime("%Y/%m/%d/%H_%M_%S")}.log"
Path.cwd() / "log" / "test" / f"{start_time.strftime('%Y/%m/%d/%H_%M_%S')}.log"
)
log_file_path.parent.mkdir(0o777, parents=True, exist_ok=True)
file_handler = logging.FileHandler(log_file_path.as_posix(), encoding="utf-8")
Expand Down

0 comments on commit 7f703df

Please sign in to comment.