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: Ib394e5f3f4f600cb2595294c5582695d3acf9b57
This commit is contained in:
shashi.kant 2016-10-26 13:41:23 +05:30 committed by Shashi
parent 772ba65266
commit 4aa4d666ad
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ envlist = py34,py27,pep8
[testenv]
setenv = VIRTUAL_ENV={envdir}
PYTHONWARNINGS=default::DeprecationWarning
usedevelop = True
install_command = pip install {opts} {packages}