From 35c39b57435ed4cb763ad2911657a5b18f358704 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 10 Jul 2016 00:17:12 +0200 Subject: [PATCH] skip 2 usually failing tests for the binary, see #862 likely related to the subprocess being created for the binary and fakeroot. --- borg/testsuite/archiver.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/borg/testsuite/archiver.py b/borg/testsuite/archiver.py index 4251af52c..7f195b40f 100644 --- a/borg/testsuite/archiver.py +++ b/borg/testsuite/archiver.py @@ -1108,6 +1108,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):