Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
joein committed Nov 12, 2024
1 parent 579481a commit 9e33409
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,14 @@ def last_resort(func, path, exc_info):
for p in parent.iterdir():
if p.is_dir():
print("content of parent", p, list(p.iterdir()))

import sys

try:
print(sys.getwindowsversion())
path = Path("C:/Users/RUNNER~1/AppData/Local/Temp/fastembed_cache/")
if path.exists():
for path in path.rglob("*"):
print(path)
except Exception:
print("Not windows")

0 comments on commit 9e33409

Please sign in to comment.