mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-20 13:17:27 +00:00
Merge pull request #1304 from ThomasWaldmann/binary-test-issue-rmtreefail
binary test issues
This commit is contained in:
commit
e50c78988e
1 changed files with 10 additions and 1 deletions
|
@ -218,7 +218,8 @@ def setUp(self):
|
|||
|
||||
def tearDown(self):
|
||||
os.chdir(self._old_wd)
|
||||
shutil.rmtree(self.tmpdir)
|
||||
# note: ignore_errors=True as workaround for issue #862
|
||||
shutil.rmtree(self.tmpdir, ignore_errors=True)
|
||||
|
||||
def cmd(self, *args, **kw):
|
||||
exit_code = kw.pop('exit_code', 0)
|
||||
|
@ -1139,6 +1140,14 @@ class ArchiverTestCaseBinary(ArchiverTestCase):
|
|||
EXE = 'borg.exe'
|
||||
FORK_DEFAULT = True
|
||||
|
||||
@unittest.skip('test_basic_functionality seems incompatible with fakeroot and/or the binary.')
|
||||
def test_basic_functionality(self):
|
||||
pass
|
||||
|
||||
@unittest.skip('test_overwrite seems incompatible with fakeroot and/or the binary.')
|
||||
def test_overwrite(self):
|
||||
pass
|
||||
|
||||
|
||||
class ArchiverCheckTestCase(ArchiverTestCaseBase):
|
||||
|
||||
|
|
Loading…
Reference in a new issue