summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-02-24 20:35:46 +0000
committerGerrit Code Review <review@openstack.org>2016-02-24 20:35:47 +0000
commit79078980fef6a9eecd503c9882230f67eb17c062 (patch)
tree55101e66b9beb857ddd609453df561dc488893c5
parent2aa72e520e76a2848dc547768f49d7ae184cfd89 (diff)
parent7d669295e056dfd9ffb5d33e1ae7ec37512b48a8 (diff)
downloadtempest-lib-79078980fef6a9eecd503c9882230f67eb17c062.tar.gz
Merge "Deprecation warning in tempest-lib"
-rw-r--r--tempest_lib/__init__.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/tempest_lib/__init__.py b/tempest_lib/__init__.py
index a16165a..47f8fcf 100644
--- a/tempest_lib/__init__.py
+++ b/tempest_lib/__init__.py
@@ -12,8 +12,19 @@
# License for the specific language governing permissions and limitations
# under the License.
-import pbr.version
+import warnings
+import pbr.version
__version__ = pbr.version.VersionInfo(
'tempest_lib').version_string()
+
+# Emit a warning for tempest-lib deprecation. We want the warning to
+# be displayed only once.
+warnings.simplefilter('once', category=DeprecationWarning)
+warnings.warn(
+ 'tempest-lib is deprecated for future bug-fixes and code changes in favor '
+ 'of tempest. Please change your imports from tempest_lib to tempest.lib',
+ DeprecationWarning)
+# And back to normal!
+warnings.resetwarnings()