We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49e6189 commit 0dfb50eCopy full SHA for 0dfb50e
1 file changed
fsspec/implementations/tests/test_smb.py
@@ -2,6 +2,7 @@
2
Test SMBFileSystem class using a docker container
3
"""
4
5
+import copy
6
import logging
7
import os
8
import shlex
@@ -94,6 +95,13 @@ def test_simple(smb_params):
94
95
fsmb.rm(adir, recursive=True)
96
assert not fsmb.exists(adir)
97
98
+ # test with a second SMB FS object wo using the password
99
+ smb_params_wopassword = copy.deepcopy(**smb_params)
100
+ del smb_params_wopassword["password"]
101
+ fsmb.mkdirs("/home/adir/justanotherdir/")
102
+
103
104
105
106
@pytest.mark.flaky(max_runs=3, rerun_filter=delay_rerun)
107
def test_auto_mkdir(smb_params):
0 commit comments