DistutilsSetupError was not raised when one single warning occured

This commit is contained in:
Tarek Ziadé 2009-04-17 14:29:56 +00:00
parent 22aa4bbdc5
commit 783f493173
2 changed files with 9 additions and 10 deletions

View File

@ -72,7 +72,7 @@ class check(Command):
# let's raise an error in strict mode, if we have at least
# one warning
if self.strict and self._warnings > 1:
if self.strict and self._warnings > 0:
raise DistutilsSetupError('Please correct your package.')
def check_metadata(self):

View File

@ -72,17 +72,16 @@ class CheckTestCase(support.LoggingSilencer,
self.assertEquals(cmd._warnings, 1)
# let's see if we have an error with strict=1
cmd = check(dist)
cmd.initialize_options()
cmd.strict = 1
cmd.ensure_finalized()
self.assertRaises(DistutilsSetupError, cmd.run)
metadata = {'url': 'xxx', 'author': 'xxx',
'author_email': 'xxx',
'name': 'xxx', 'version': 'xxx',
'long_description': broken_rest}
self.assertRaises(DistutilsSetupError, self._run, metadata,
**{'strict': 1, 'restructuredtext': 1})
# and non-broken rest
rest = 'title\n=====\n\ntest'
pkg_info, dist = self.create_dist(long_description=rest)
cmd = check(dist)
cmd.check_restructuredtext()
metadata['long_description'] = 'title\n=====\n\ntest'
cmd = self._run(metadata, strict=1, restructuredtext=1)
self.assertEquals(cmd._warnings, 0)
def test_check_all(self):