From d8e9a9bf96b02f3c1b72c1b75095e6005cf4353e Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 12 Jul 2015 23:29:34 +0200 Subject: [PATCH] skip test_crash_before_compact test for RemoteRepository it was silently failing until recently. and it can't work the way it is on RemoteRepository. it's still active (and now even really working) for the (local) Repository tests. --- borg/testsuite/repository.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/borg/testsuite/repository.py b/borg/testsuite/repository.py index f63a86711..981cda658 100644 --- a/borg/testsuite/repository.py +++ b/borg/testsuite/repository.py @@ -328,3 +328,7 @@ class RemoteRepositoryCheckTestCase(RepositoryCheckTestCase): def open(self, create=False): return RemoteRepository(Location('__testsuite__:' + os.path.join(self.tmppath, 'repository')), create=create) + + def test_crash_before_compact(self): + # skip this test, we can't mock-patch a Repository class in another process! + pass