From ffdab4ea43389b94f3c1d1ead5d97870d7c3c311 Mon Sep 17 00:00:00 2001 From: Steve Martinelli Date: Tue, 3 Jan 2017 09:51:55 -0500 Subject: remove hacking checks from keystoneclient the only hacking check in keystoneclient is related to older versions of oslo libraries, which are no longer supported by keystoneclient, for example: $ pip freeze | grep oslo.utils oslo.utils==3.18.0 $ python >>> import oslo.utils Traceback (most recent call last): File "", line 1, in ImportError: No module named oslo.utils >>> import oslo_utils >>> Let's just remove the hacking check since theres no way someone could incorrectly import the older versions. Closes-Bug: 1652458 Signed-off-by: Adam Williamson Change-Id: I14165903b46d2fc26e8c9de591917893f58516db --- tox.ini | 1 - 1 file changed, 1 deletion(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index efe81f8..89ab447 100644 --- a/tox.ini +++ b/tox.ini @@ -64,7 +64,6 @@ commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasen [hacking] import_exceptions = keystoneclient.i18n -local-check-factory = keystoneclient.tests.hacking.checks.factory [testenv:bindep] # Do not install any requirements. We want this to be fast and work even if -- cgit v1.2.1