From: Christian Herdtweck Date: Tue, 26 Jul 2016 08:47:02 +0000 (+0200) Subject: avoid another warning X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=0d27ff779da0a614a7f462eb79df6d1938445e0a;p=python-delta-tar avoid another warning --- diff --git a/testing/test_deltatar.py b/testing/test_deltatar.py index 0c6fa9b..de813b8 100644 --- a/testing/test_deltatar.py +++ b/testing/test_deltatar.py @@ -319,7 +319,7 @@ class DeltaTarTest(BaseTest): Creates a full backup without any filtering with multiple volumes and restore it. ''' - if ':gz' in self.MODE: + if ':gz' in self.MODE or ':bz2' in self.MODE: raise SkipTest('compression information is lost when creating ' 'multiple volumes with no Stream')