mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
make sure distutils logging is shut off in tests to avoid spurious output
This commit is contained in:
parent
1fa649f2d5
commit
edcac8f416
5 changed files with 25 additions and 3 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue