From c147d829588c7439bb0fd47e1710a0be033b03e0 Mon Sep 17 00:00:00 2001 From: Christian Herdtweck Date: Tue, 19 Jul 2016 13:17:14 +0200 Subject: [PATCH] skip another multi-volume unittest that gives warning/raises error if compressing --- testing/test_deltatar.py | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/testing/test_deltatar.py b/testing/test_deltatar.py index 4fac62f..0c6fa9b 100644 --- a/testing/test_deltatar.py +++ b/testing/test_deltatar.py @@ -489,6 +489,10 @@ class DeltaTarTest(BaseTest): Creates a full backup without any filtering with multiple volumes and restore it. ''' + if self.MODE.startswith(':') or self.MODE.startswith('|'): + raise SkipTest('this test only works for uncompressed ' + 'or concat compressed modes') + password, paramversion = self.ENCRYPTION or (None, None) deltatar = DeltaTar(mode=self.MODE, password=password, crypto_paramversion=paramversion, -- 1.7.1