From: Christian Heimes Date: Sat, 25 Jun 2022 10:53:37 +0000 (+0200) Subject: gh-70441: Fix test_tarfile on systems w/o bz2 (gh-2962) (#94258) X-Git-Tag: v3.12.0a1~1123 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b52849905218582d067a875712af8c2bcc8789c4;p=thirdparty%2FPython%2Fcpython.git gh-70441: Fix test_tarfile on systems w/o bz2 (gh-2962) (#94258) --- diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py index 04f9bee66cee..0868d5d6e909 100644 --- a/Lib/test/test_tarfile.py +++ b/Lib/test/test_tarfile.py @@ -1613,6 +1613,7 @@ class CompressLevelRaises(unittest.TestCase): with self.assertRaises(TypeError): tarfile.open(tmpname, "w:", fobj, compresslevel=compresslevel) + @support.requires_bz2() def test_wrong_compresslevels(self): # BZ2 checks that the compresslevel is in [1,9]. gz does not fobj = io.BytesIO()