diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2018-09-23 10:41:42 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2018-09-23 10:41:42 -0400 |
commit | b3d098a3f7eb41c9554fdafe3d5aeb68d51f81f4 (patch) | |
tree | 75409d1fc0c8e2e95b88ef7f8f39e25109d8c8b3 /setuptools/tests | |
parent | e3ce4c508fe2b0c56c6bd22ee0eb15fb3a7fb279 (diff) | |
download | external_python_setuptools-b3d098a3f7eb41c9554fdafe3d5aeb68d51f81f4.tar.gz external_python_setuptools-b3d098a3f7eb41c9554fdafe3d5aeb68d51f81f4.tar.bz2 external_python_setuptools-b3d098a3f7eb41c9554fdafe3d5aeb68d51f81f4.zip |
Ignore warnings about deprecated features.
Diffstat (limited to 'setuptools/tests')
-rw-r--r-- | setuptools/tests/test_setuptools.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/tests/test_setuptools.py b/setuptools/tests/test_setuptools.py index 26e37a6c..7aae3a16 100644 --- a/setuptools/tests/test_setuptools.py +++ b/setuptools/tests/test_setuptools.py @@ -210,6 +210,7 @@ class TestDistro: self.dist.exclude(package_dir=['q']) +@pytest.mark.filterwarnings('ignore:Features are deprecated') class TestFeatures: def setup_method(self, method): self.req = Require('Distutils', '1.0.3', 'distutils') |