[Python-checkins] cpython (2.7): Try to fix test_distutils on Windows (#12678)

eric.araujo python-checkins at python.org
Fri Aug 26 16:37:37 CEST 2011


http://hg.python.org/cpython/rev/8ad1670c0f1f
changeset:   72090:8ad1670c0f1f
branch:      2.7
user:        Éric Araujo <merwok at netwok.org>
date:        Fri Aug 26 02:05:44 2011 +0200
summary:
  Try to fix test_distutils on Windows (#12678)

files:
  Lib/distutils/tests/test_sdist.py |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py
--- a/Lib/distutils/tests/test_sdist.py
+++ b/Lib/distutils/tests/test_sdist.py
@@ -422,6 +422,7 @@
     def test_manual_manifest(self):
         # check that a MANIFEST without a marker is left alone
         dist, cmd = self.get_cmd()
+        cmd.formats = ['gztar']
         cmd.ensure_finalized()
         self.write_file((self.tmp_dir, cmd.manifest), 'README.manual')
         self.write_file((self.tmp_dir, 'README.manual'),

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list