jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/553871 )
Change subject: Use Python 3.5 for Jenkins tests ......................................................................
Use Python 3.5 for Jenkins tests
Bug: T239548 Depends-On: Ic9eda44451ad284de768b8b9a929e8a16a205d43 Change-Id: Ie2f9b19368bc3662c8ed57c341fe9d4b730c5d10 --- M tox.ini 1 file changed, 8 insertions(+), 8 deletions(-)
Approvals: Hashar: Looks good to me, approved jenkins-bot: Verified
diff --git a/tox.ini b/tox.ini index 40a17a5..63d1c50 100644 --- a/tox.ini +++ b/tox.ini @@ -6,8 +6,8 @@ envlist = commit-message flake8-{py27,py3,pypy} - doctest-{py27,py34} - test-{py27,py34} + doctest-{py27,py35} + test-{py27,py35}
[tox:jenkins] # Override default for WM Jenkins @@ -40,10 +40,10 @@ fasttest-py27: nose-detecthttp fasttest-py27: unicodecsv
- fasttest-py34: mwparserfromhell - fasttest-py34: beautifulsoup4 - fasttest-py34: nose-detecthttp>=0.1.3 - fasttest-py34: six + fasttest-py35: mwparserfromhell + fasttest-py35: beautifulsoup4 + fasttest-py35: nose-detecthttp>=0.1.3 + fasttest-py35: six
[testenv:commit-message] deps = commit-message-validator @@ -57,7 +57,7 @@ nosetests --with-doctest pywikibot {[params]doctest_skip} basepython = py27: python2.7 - py34: python3.4 + py35: python3.5 deps = nose six @@ -70,7 +70,7 @@ pip install -e .[security] make html -C ./docs rstcheck --recursive --report warning --ignore-directives automodule,autoclass,autofunction . -basepython = python3.4 +basepython = python3.5 deps = -rrequirements.txt -rdocs/requirements-py3.txt
pywikibot-commits@lists.wikimedia.org