Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Anis SMAIL committed Jan 28, 2025
1 parent 1663c59 commit 78d474a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/storage/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import datetime
import uuid
from pathlib import Path, PurePosixPath, PureWindowsPath
from pathlib import Path, PureWindowsPath
from typing import Callable, Dict, List, Optional, Union
from unittest.mock import Mock

Expand Down Expand Up @@ -350,5 +350,6 @@ def tmp_path_posix(tmp_path: Path) -> Path:
print("in fixture tmp path", tmp_path)
tmp_path_windows = PureWindowsPath(tmp_path)
print("in fixture tmp tmp_path_windows", tmp_path_windows)
print("in fixture tmp tmp path posix", PurePosixPath(tmp_path_windows.as_posix()))
return PurePosixPath(tmp_path_windows.as_posix())
tmp_path_posix = Path(tmp_path_windows.as_posix())
print("in fixture tmp tmp path posix", tmp_path_posix)
return tmp_path_posix

0 comments on commit 78d474a

Please sign in to comment.