From 590bc5c747465518091189501fd7ef5797c31595 Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Thu, 28 Dec 2023 05:58:50 +0200 Subject: [PATCH] tests: add placeholders for ulink/rmdir (#31) --- dvc_oss/tests/cloud.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dvc_oss/tests/cloud.py b/dvc_oss/tests/cloud.py index 60ea2fc..3b23ff8 100644 --- a/dvc_oss/tests/cloud.py +++ b/dvc_oss/tests/cloud.py @@ -43,3 +43,9 @@ def write_bytes(self, contents): def read_bytes(self): raise NotImplementedError + + def unlink(self, missing_ok: bool = False) -> None: + raise NotImplementedError + + def rmdir(self, recursive: bool = True) -> None: + raise NotImplementedError