We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91208d1 commit 622d409Copy full SHA for 622d409
noxfile.py
@@ -65,7 +65,11 @@ def _cleanup(session: nox.Session) -> None:
65
shutil.rmtree(venv_dir, ignore_errors=True)
66
session.log(f"Cleaned up {venv_dir}")
67
shutil.rmtree(pathlib.Path("~/.cache").expanduser(), ignore_errors=True)
68
- session.run("uv", "cache", "clean", external=True)
+ # Clean GitHub Actions temp cache
69
+ gha_temp = pathlib.Path("/home/runner/work/_temp/setup-uv-cache")
70
+ if gha_temp.exists():
71
+ shutil.rmtree(gha_temp, ignore_errors=True)
72
+ session.log(f"Cleaned GitHub Actions uv temp cache at {gha_temp}")
73
74
75
def _run_tests(
0 commit comments