1
0
Fork 0
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:
TW 2016-07-10 17:51:28 +02:00 committed by GitHub
commit e50c78988e

View file

@ -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):