Skip to content

Commit f477486

Browse files
committed
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.
1 parent fd0ec90 commit f477486

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tox.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ passenv = {[testenv]passenv}
2929
commands = {envpython} \
3030
-m coverage run --parallel setup.py test
3131

32+
[testenv:py34]
33+
# No warnings with Python 3.4
34+
passenv = {[testenv]passenv}
35+
commands = {envpython} \
36+
-m coverage run --parallel setup.py test
37+
3238
[testenv:py2-nosasltls]
3339
basepython = python2
3440
deps = {[testenv]deps}

0 commit comments

Comments
 (0)