mirror of
https://github.com/borgbackup/borg.git
synced 2026-07-08 01:31:04 -04:00
Skip object-patching retry tests in binary variant
unittest.mock.patch does not reach the borg.exe subprocess, so these two tests would fail under ArchiverTestCaseBinary. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
c19f84da2d
commit
4e13f7fc5f
1 changed files with 9 additions and 1 deletions
|
|
@ -4519,7 +4519,7 @@ id: 2 / e29442 3506da 4e1ea7 / 25f62a 5a3d41 - 02
|
|||
self.cmd('init', '--encryption=repokey', self.repository_location)
|
||||
secrets_path = os.path.join(self.tmpdir, 'secrets.json')
|
||||
self.cmd('key', 'export-related-secrets', self.repository_location, secrets_path)
|
||||
|
||||
|
||||
# Try to create repo2 with BLAKE2b (incompatible)
|
||||
repo2_path = os.path.join(self.tmpdir, 'repo2')
|
||||
repo2_location = self.prefix + repo2_path
|
||||
|
|
@ -4552,6 +4552,14 @@ class ArchiverTestCaseBinary(ArchiverTestCase):
|
|||
def test_create_exclude_dataless(self):
|
||||
pass
|
||||
|
||||
@unittest.skip('patches objects')
|
||||
def test_create_changed_file_retry_rolls_back_chunks(self):
|
||||
pass
|
||||
|
||||
@unittest.skip('patches objects')
|
||||
def test_create_erroneous_file_with_part_files(self):
|
||||
pass
|
||||
|
||||
@unittest.skip('test_basic_functionality seems incompatible with fakeroot and/or the binary.')
|
||||
def test_basic_functionality(self):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Reference in a new issue