Skip to content

Commit 8d7888e

Browse files
committed
tests: add placeholders for unlink/rmdir
1 parent 23f31ec commit 8d7888e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

dvc_ssh/tests/cloud.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ def read_bytes(self):
5959
with self._ssh.open(self.path, "rb") as fobj:
6060
return fobj.read()
6161

62+
def unlink(self, missing_ok: bool = False) -> None:
63+
raise NotImplementedError
64+
65+
def rmdir(self, recursive: bool = True) -> None:
66+
raise NotImplementedError
67+
6268
@property
6369
def fs_path(self):
6470
return self.path

0 commit comments

Comments
 (0)