From a1c9ee152bec7284c0d9eed0985fc2f1a0342849 Mon Sep 17 00:00:00 2001 From: Ilay Rosenberg Date: Sun, 23 Jan 2022 16:26:09 +0200 Subject: [PATCH] Trying to fix the CI by running mount and umount as root --- tests/shell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/shell.py b/tests/shell.py index 41a8be0f..7da80662 100644 --- a/tests/shell.py +++ b/tests/shell.py @@ -126,8 +126,8 @@ def msize(path): def mount_tmpfs(path): - os.system(f'mount -t tmpfs none {path}') + os.system(f'sudo mount -t tmpfs none {path}') def unmount(path): - os.system(f'umount {path}') + os.system(f'sudo umount {path}')