We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 923ec11 commit a49a96bCopy full SHA for a49a96b
1 file changed
tests/extmod/vfs_basic.py
@@ -46,6 +46,10 @@ def open(self, file, mode):
46
print(self.id, 'open', file, mode)
47
48
49
+# first we umount any existing mount points the target may have
50
+for path in uos.listdir('/'):
51
+ uos.umount('/' + path)
52
+
53
# stat root dir
54
print(uos.stat('/'))
55
0 commit comments