From d0b09dfc958dfa5b0d827f9b727d88c7b8832107 Mon Sep 17 00:00:00 2001 From: Rayyan Ansari Date: Tue, 15 Nov 2022 19:12:13 +0000 Subject: [PATCH] testsuite: repository: skip some tests for RemoteRepository --- src/borg/testsuite/repository.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/borg/testsuite/repository.py b/src/borg/testsuite/repository.py index d7997d072..c51574920 100644 --- a/src/borg/testsuite/repository.py +++ b/src/borg/testsuite/repository.py @@ -1002,6 +1002,14 @@ class RemoteRepositoryCheckTestCase(RepositoryCheckTestCase): # skip this test, we can't mock-patch a Repository class in another process! pass + def test_repair_missing_commit_segment(self): + # skip this test, files in RemoteRepository cannot be deleted + pass + + def test_repair_missing_segment(self): + # skip this test, files in RemoteRepository cannot be deleted + pass + class RemoteLoggerTestCase(BaseTestCase): def setUp(self):