From 969dcb6ee962e94e193c8158d564cc6efec1b9eb Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Thu, 7 Apr 2022 14:47:05 -0700 Subject: [PATCH] tests: Fix swiftclient/requests log level & Ignore py36 deprecation warnings Gotta update now that swiftclient changed how it imports and uses requests. Related-Change: https://review.opendev.org/c/openstack/python-swiftclient/+/828821 Change-Id: I0e0f802fa355060f43f9e63f52897fbcf66816d2 (cherry picked from commit a5a98d7e3bbcfb6d4e8cca8f4aca08cca4286b17) (cherry picked from commit 7298038ed90fe5824c250975045a6f0a3eb39d04) --- swift/__init__.py | 4 ++++ test/__init__.py | 4 ++++ test/probe/test_sharder.py | 9 +++++++-- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/swift/__init__.py b/swift/__init__.py index 88fc403cec..6168bdc8ae 100644 --- a/swift/__init__.py +++ b/swift/__init__.py @@ -81,3 +81,7 @@ warnings.filterwarnings('ignore', module='cryptography|OpenSSL', message=( 'Python 2 is no longer supported by the Python core team. ' 'Support for it is now deprecated in cryptography, ' 'and will be removed in a future release.')) +warnings.filterwarnings('ignore', message=( + 'Python 3.6 is no longer supported by the Python core team. ' + 'Therefore, support for it is deprecated in cryptography ' + 'and will be removed in a future release.')) diff --git a/test/__init__.py b/test/__init__.py index 363efb53c7..22c63b9f42 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -42,6 +42,10 @@ warnings.filterwarnings('ignore', module='cryptography|OpenSSL', message=( 'Python 2 is no longer supported by the Python core team. ' 'Support for it is now deprecated in cryptography, ' 'and will be removed in a future release.')) +warnings.filterwarnings('ignore', message=( + 'Python 3.6 is no longer supported by the Python core team. ' + 'Therefore, support for it is deprecated in cryptography ' + 'and will be removed in a future release.')) from eventlet.green import socket diff --git a/test/probe/test_sharder.py b/test/probe/test_sharder.py index 3cf785a50b..c369a4760e 100644 --- a/test/probe/test_sharder.py +++ b/test/probe/test_sharder.py @@ -43,6 +43,11 @@ from test.probe.common import ReplProbeTest, get_server_number, \ from test.debug_logger import debug_logger import mock +try: + from swiftclient.requests_compat import requests as client_requests +except ImportError: + # legacy location + from swiftclient.client import requests as client_requests MIN_SHARD_CONTAINER_THRESHOLD = 4 MAX_SHARD_CONTAINER_THRESHOLD = 100 @@ -116,8 +121,8 @@ class BaseTestContainerSharding(ReplProbeTest): def setUp(self): client.logger.setLevel(client.logging.WARNING) - client.requests.logging.getLogger().setLevel( - client.requests.logging.WARNING) + client_requests.logging.getLogger().setLevel( + client_requests.logging.WARNING) super(BaseTestContainerSharding, self).setUp() _, self.admin_token = get_auth( PROXY_BASE_URL + '/auth/v1.0', 'admin:admin', 'admin')