summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2019-07-12 05:37:40 +0200
committerJürg Billeter <j@bitron.ch>2019-08-20 08:09:52 +0200
commit2f34f1907be7f0c663af14e1412ff52ad5d5bce8 (patch)
tree28316c6ea023b2052d3e60c1f7e7db90447e38fb
parentd5105710da5fa20272bc4fb21f5573e94e8d997b (diff)
downloadbuildstream-2f34f1907be7f0c663af14e1412ff52ad5d5bce8.tar.gz
tests/artifactcache/artifactservice.py: Enable write access via casd
-rw-r--r--tests/artifactcache/artifactservice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/artifactcache/artifactservice.py b/tests/artifactcache/artifactservice.py
index 1456185a4..3d229e24f 100644
--- a/tests/artifactcache/artifactservice.py
+++ b/tests/artifactcache/artifactservice.py
@@ -86,7 +86,7 @@ def _artifact_request(url, queue):
@pytest.mark.parametrize("files", ["present", "absent", "invalid"])
def test_update_artifact(tmpdir, files):
sharedir = os.path.join(str(tmpdir), "share")
- with create_artifact_share(sharedir) as share:
+ with create_artifact_share(sharedir, casd=True) as share:
queue = Queue()
process = Process(target=_queue_wrapper, args=(_update_artifact, queue, share, files))