From 1777c527781f788571e4f8a1f8e1f0d813ea9b8b Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sat, 25 Aug 2018 12:23:32 +0100 Subject: [PATCH] add python 3.7 to tox --- tox.ini | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 84924a79..63841e65 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=flake8,py27,py34,py35,py36,pypy,pypy3,docs,coverage +envlist=flake8,py27,py34,py35,py36,py37,pypy,pypy3,docs,coverage skip_missing_interpreters=True [testenv] @@ -11,22 +11,24 @@ deps= coverage mock basepython = + flake8: python3.6 py27: python2.7 py34: python3.4 py35: python3.5 py36: python3.6 + py37: python3.7 pypy: pypy pypy3: pypy3 + docs: python3.6 + coverage: python3.6 [testenv:flake8] -basepython=python3.6 deps= flake8 commands= flake8 --exclude=".*" --ignore=E402,E722 socketio tests [testenv:docs] -basepython=python2.7 changedir=docs deps= sphinx @@ -36,7 +38,6 @@ commands= make html [testenv:coverage] -basepython=python3.6 commands= coverage run --branch --source=socketio setup.py test coverage html