]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 82839 via svnmerge from
authorEzio Melotti <ezio.melotti@gmail.com>
Mon, 12 Jul 2010 19:52:15 +0000 (19:52 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Mon, 12 Jul 2010 19:52:15 +0000 (19:52 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r82839 | ezio.melotti | 2010-07-12 22:49:41 +0300 (Mon, 12 Jul 2010) | 1 line

  #6026: skip test_get_file_list when zlib is not available.
........

Lib/distutils/tests/test_sdist.py

index 76f5b774712f5f21794a704f8e212a2f46e4df2f..f83b9f29b64f74f2c6cbde8247ce8c4ef748cb93 100644 (file)
@@ -346,6 +346,7 @@ class SDistTestCase(PyPIRCCommandTestCase):
         finally:
             archive.close()
 
+    @unittest.skipUnless(zlib, "requires zlib")
     def test_get_file_list(self):
         # make sure MANIFEST is recalculated
         dist, cmd = self.get_cmd()