Skip to content

Commit

Permalink
Trying to fix the CI by running mount and umount as root
Browse files Browse the repository at this point in the history
  • Loading branch information
IlayRosenberg committed Jan 23, 2022
1 parent 4af0de0 commit 0327db5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/shell.py
Expand Up @@ -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}')

0 comments on commit 0327db5

Please sign in to comment.