From: Tarek Ziadé Date: Tue, 31 Mar 2009 20:56:11 +0000 (+0000) Subject: making sdist and config test silents X-Git-Tag: v2.7a1~1671 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a1158f955b18cfe88fc97312f30107b03fad5a2;p=python making sdist and config test silents --- diff --git a/Lib/distutils/tests/test_config.py b/Lib/distutils/tests/test_config.py index a18f45359a..7737538bf8 100644 --- a/Lib/distutils/tests/test_config.py +++ b/Lib/distutils/tests/test_config.py @@ -47,7 +47,9 @@ password:xxx """ -class PyPIRCCommandTestCase(support.TempdirManager, unittest.TestCase): +class PyPIRCCommandTestCase(support.TempdirManager, + support.LoggingSilencer, + unittest.TestCase): def setUp(self): """Patches the environment.""" diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py index 15a8c8087c..8af080f950 100644 --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -34,7 +34,7 @@ somecode%(sep)sdoc.dat somecode%(sep)sdoc.txt """ -class sdistTestCase(support.LoggingSilencer, PyPIRCCommandTestCase): +class sdistTestCase(PyPIRCCommandTestCase): def setUp(self): # PyPIRCCommandTestCase creates a temp dir already