hy/tox.ini

16 lines
283 B
INI

[tox]
envlist = py27,pypy,py33,py34,py35,py36,flake8
skipsdist = True
[testenv]
commands =
pip install --allow-all-external -e .
pytest
passenv =
TERM
deps =
-rrequirements-dev.txt
[testenv:flake8]
commands = flake8 hy bin tests --ignore=E121,E123,E126,E226,E24,E704,W503,E305