From f477486b9185b92ff774096ed41effd3a90ca6b0 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 27 Mar 2018 10:52:27 +0200 Subject: [PATCH] Tests: Disable warnings-as-errors for Python 3.4 Python 3.4 is in its security fix only phase. We should make sure the tests pass, but warnings should no longer break CI. --- tox.ini | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tox.ini b/tox.ini index 992a699..f7751d0 100644 --- a/tox.ini +++ b/tox.ini @@ -29,6 +29,12 @@ passenv = {[testenv]passenv} commands = {envpython} \ -m coverage run --parallel setup.py test +[testenv:py34] +# No warnings with Python 3.4 +passenv = {[testenv]passenv} +commands = {envpython} \ + -m coverage run --parallel setup.py test + [testenv:py2-nosasltls] basepython = python2 deps = {[testenv]deps}