summaryrefslogtreecommitdiff
path: root/src/buildstream/testing
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2019-06-06 12:34:16 +0200
committerJürg Billeter <j@bitron.ch>2019-08-20 08:09:52 +0200
commite54883ba1fa6a0f4466f2781c148a7744b075a0b (patch)
tree75e6f619c8fc4dc2a8bc4950c26c8107c071e4c5 /src/buildstream/testing
parent9f36c46a35221b9b1dfeda46048aaeaa0a6d7afa (diff)
downloadbuildstream-e54883ba1fa6a0f4466f2781c148a7744b075a0b.tar.gz
cascache.py: Start buildbox-casd and set up channel
Diffstat (limited to 'src/buildstream/testing')
-rw-r--r--src/buildstream/testing/runcli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/testing/runcli.py b/src/buildstream/testing/runcli.py
index 95bf83eff..6c3ab3496 100644
--- a/src/buildstream/testing/runcli.py
+++ b/src/buildstream/testing/runcli.py
@@ -746,7 +746,7 @@ class TestArtifact():
def _extract_subdirectory(self, tmpdir, digest):
with tempfile.TemporaryDirectory() as extractdir:
try:
- cas = CASCache(str(tmpdir))
+ cas = CASCache(str(tmpdir), casd=False)
cas.checkout(extractdir, digest)
yield extractdir
except FileNotFoundError: