From 9828fef87a6c60b3d893b79c7156279307ac7ecb Mon Sep 17 00:00:00 2001 From: Christopher Amin Date: Fri, 23 Nov 2018 14:42:43 +0100 Subject: [PATCH] Add py37 to tox.ini --- tox.ini | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 68a5ed2..f54d94e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py27-pyflakes, py27-pep8, py27-coverage, py27, py34, py34-syntax +envlist=py27-pyflakes, py27-pep8, py27-coverage, py27, py34, py34-syntax, py37, py37-syntax [testenv] commands=python setup.py test [] @@ -24,6 +24,12 @@ deps=coverage [testenv:py34-syntax] whitelist_externals=bash -commands=bash -c "find ripe/ tests/ -name "*.py" | xargs python -m py_compile" +commands=bash -c "find ripe/ tests/ -name '*.py' | xargs python -m py_compile" basepython=python3.4 deps= + +[testenv:py37-syntax] +whitelist_externals=bash +commands=bash -c "find ripe/ tests/ -name '*.py' | xargs python -m py_compile" +basepython=python3.7 +deps=