Skip to content

Commit 995391c

Browse files
committed
Fix for windows tests
1 parent 23e1959 commit 995391c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/scripts/rmiso.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import shutil
22
from pathlib import Path
33

4-
path = Path(__file__).parent.parent / "IsoSpecPy"
4+
path = Path(__file__).parent.parent.parent / "IsoSpecPy"
55
print(f"Removing IsoSpecPy directory at: {path}")
6+
print("Its contents are:", list(path.iterdir()))
67
shutil.rmtree(path, ignore_errors=True)
78
print("Done.")

0 commit comments

Comments
 (0)