diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2019-08-08 22:25:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-08 22:25:46 (GMT) |
commit | aa542c2cf26c5af9298dda6064576b18906cdfbf (patch) | |
tree | 257dc64bf89c8f100dda7613762b3f6b550ead4e /Lib/distutils | |
parent | 10a0a093231ea82a3bfd33fd63322aebd8406866 (diff) | |
download | cpython-aa542c2cf26c5af9298dda6064576b18906cdfbf.zip cpython-aa542c2cf26c5af9298dda6064576b18906cdfbf.tar.gz cpython-aa542c2cf26c5af9298dda6064576b18906cdfbf.tar.bz2 |
bpo-37795: Capture DeprecationWarnings in the test suite (GH-15184)
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/tests/test_bdist.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_bdist.py b/Lib/distutils/tests/test_bdist.py index c80b3ed..130d8bf 100644 --- a/Lib/distutils/tests/test_bdist.py +++ b/Lib/distutils/tests/test_bdist.py @@ -2,6 +2,7 @@ import os import unittest from test.support import run_unittest +import warnings from distutils.command.bdist import bdist from distutils.tests import support @@ -38,7 +39,10 @@ class BuildTestCase(support.TempdirManager, names.append('bdist_msi') for name in names: - subcmd = cmd.get_finalized_command(name) + with warnings.catch_warnings(): + warnings.filterwarnings('ignore', 'bdist_wininst command is deprecated', + DeprecationWarning) + subcmd = cmd.get_finalized_command(name) if getattr(subcmd, '_unsupported', False): # command is not supported on this build continue |