Skip to content

Commit 2cc778a

Browse files
committed
Update cleanup function
1 parent 35ba43c commit 2cc778a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

noxfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ def _cleanup(session: nox.Session) -> None:
6969
gha_temp = pathlib.Path("/home/runner/work/_temp/setup-uv-cache")
7070
if gha_temp.exists():
7171
shutil.rmtree(gha_temp, ignore_errors=True)
72-
session.log(f"Cleaned GitHub Actions uv temp cache at {gha_temp}")
72+
gha_temp.mkdir(parents=True, exist_ok=True)
73+
session.log(f"Stubbed GitHub Actions cache folder at {gha_temp}")
7374

7475

7576
def _run_tests(

0 commit comments

Comments
 (0)