From d3d4b04ce264dfb910b6e281b888134617f97adb Mon Sep 17 00:00:00 2001 From: mulhern Date: Thu, 20 Jun 2024 16:37:51 -0400 Subject: [PATCH] Actually create the mountpoint before using Signed-off-by: mulhern --- testlib/infra.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testlib/infra.py b/testlib/infra.py index 94bbfdb..4ddbac0 100644 --- a/testlib/infra.py +++ b/testlib/infra.py @@ -605,5 +605,6 @@ def mount(self, fs_path): :rtype: str """ mountpoint = os.path.join(self.mount_root, os.path.basename(fs_path)) + os.mkdir(mountpoint) subprocess.check_call([MOUNT, fs_path, mountpoint]) return mountpoint