From 4688f76b21413ed736045bdf402ec02058813d98 Mon Sep 17 00:00:00 2001 From: Thomas Bechtold Date: Mon, 21 Aug 2017 11:36:48 +0200 Subject: Deprecate oslotest.functional oslotest is a very basic module and should depend on as less as possible things. Currently oslotest.functional requires os-cloud-config which test-requires oslotest. Removing oslotest.functional solves this. Also oslotest.functional is not used anywhere. Change-Id: I553fc81a8ec55435004af27c4a34707cff9cf38d --- oslotest/functional.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'oslotest') diff --git a/oslotest/functional.py b/oslotest/functional.py index 32448a6..3a9c3ab 100644 --- a/oslotest/functional.py +++ b/oslotest/functional.py @@ -13,9 +13,15 @@ # See the License for the specific language governing permissions and # limitations under the License. +from debtcollector import removals import os_client_config +removals.removed_module("oslotest.functional", + version="2.9.0", removal_version="3.0", + message="oslotest.functional will be removed.") + + def _get_openstack_auth(openstack_config, cloud_name, override_name): try: cloud_config = openstack_config.get_one_cloud(cloud_name) -- cgit v1.2.1