From ae01dcde044187c19fe70f1530d6ccf7e3b0a180 Mon Sep 17 00:00:00 2001 From: avnish Date: Tue, 7 Feb 2017 12:40:39 +0530 Subject: [PATCH] Enable DeprecationWarning in test environments Many deprecations are triggered early (on imports, for example). To make sure all DeprecationWarning messages are emitted we enable them via the PYTHONWARNINGS environment variable. Change-Id: I0a698c07a3052c52cf0c112c31f1caf33f3df972 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 70f3c0905..3a7c5bfaa 100644 --- a/tox.ini +++ b/tox.ini @@ -8,6 +8,7 @@ usedevelop = True install_command = pip install -U -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages} setenv = VIRTUAL_ENV={envdir} + PYTHONWARNINGS=default::DeprecationWarning deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = python setup.py test --slowest --testr-args='{posargs}'