diff options
author | Fred Drake <fdrake@acm.org> | 2004-08-03 18:53:07 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-08-03 18:53:07 (GMT) |
commit | edcac8f416ebe4561bbc0e91c46a3bfc5457f73c (patch) | |
tree | df4fbed36f3dfc843a735183c440453be3eb6a05 /Lib/distutils/tests/test_install_scripts.py | |
parent | 1fa649f2d5d4a63105577888830276a6dc4771b5 (diff) | |
download | cpython-edcac8f416ebe4561bbc0e91c46a3bfc5457f73c.zip cpython-edcac8f416ebe4561bbc0e91c46a3bfc5457f73c.tar.gz cpython-edcac8f416ebe4561bbc0e91c46a3bfc5457f73c.tar.bz2 |
make sure distutils logging is shut off in tests to avoid spurious output
Diffstat (limited to 'Lib/distutils/tests/test_install_scripts.py')
-rw-r--r-- | Lib/distutils/tests/test_install_scripts.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_install_scripts.py b/Lib/distutils/tests/test_install_scripts.py index 2e86dcd..fffa6ef 100644 --- a/Lib/distutils/tests/test_install_scripts.py +++ b/Lib/distutils/tests/test_install_scripts.py @@ -9,7 +9,9 @@ from distutils.core import Distribution from distutils.tests import support -class InstallScriptsTestCase(support.TempdirManager, unittest.TestCase): +class InstallScriptsTestCase(support.TempdirManager, + support.LoggingSilencer, + unittest.TestCase): def test_default_settings(self): dist = Distribution() |