From: Stephen Finucane Date: Thu, 18 May 2017 20:17:48 +0000 (+0100) Subject: tox: Turn deprecation notices into warnings X-Git-Tag: v2.0.0-rc2~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9db5cd0b9f29e0526656897793daed3c7b502b2f;p=thirdparty%2Fpatchwork.git tox: Turn deprecation notices into warnings Django does an excellent job of marking what features are going to change in upcoming releases through extensive use of the 'warnings' module. Pass the '-Werror' flag to 'manage.py' in tests, ensuring that any warnings will result in exceptions instead. This should make upgrades a mostly painless process going forward. Signed-off-by: Stephen Finucane --- diff --git a/tox.ini b/tox.ini index 90f177a8..1023c0d2 100644 --- a/tox.ini +++ b/tox.ini @@ -26,8 +26,8 @@ passenv = PW_TEST_DB_PORT DISPLAY SELENIUM_BROWSER PW_SKIP_BROWSER_TESTS DISPLAY HOME XAUTHORITY commands = - {toxinidir}/manage.py test --noinput --liveserver=localhost:9000-9200 \ - '{posargs:patchwork}' + python -Werror {toxinidir}/manage.py test --noinput \ + --liveserver=localhost:9000-9200 '{posargs:patchwork}' [testenv:bashate] deps = bashate>=0.5,<0.6