Skip to content

Commit

Permalink
Add py37 to tox.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisamin committed Nov 23, 2018
1 parent e312434 commit 9828fef
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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 []
Expand All @@ -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=

0 comments on commit 9828fef

Please sign in to comment.