From 435ebf4b85c68e6609fffb3fc4dbabd281f6aa19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Billeter?= Date: Mon, 15 Sep 2025 08:48:06 +0200 Subject: [PATCH] tests/integration/pullbuildtrees.py: Clear local asset cache The remote asset proxy support in buildbox-casd 1.3.37 uses a local asset cache. Clear that cache in `default_state()` where we already clear the local CAS cache. --- tests/integration/pullbuildtrees.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/pullbuildtrees.py b/tests/integration/pullbuildtrees.py index a5fe18c7b..a0b4d7f35 100644 --- a/tests/integration/pullbuildtrees.py +++ b/tests/integration/pullbuildtrees.py @@ -38,6 +38,7 @@ # cleared as just forcefully removing the refpath leaves dangling objects. def default_state(cli, tmpdir, share): shutil.rmtree(os.path.join(str(tmpdir), "cas")) + shutil.rmtree(os.path.join(str(tmpdir), "assets")) cli.configure( { "artifacts": {"servers": [{"url": share.repo, "push": False}]},