hy/tox.ini

16 lines
273 B
INI
Raw Normal View History

2013-03-06 00:39:34 +01:00
[tox]
2017-08-18 22:44:00 +02:00
envlist = py27,pypy,py34,py35,py36,pypy3,flake8
skipsdist = True
[testenv]
commands =
pip install -e .
2018-02-09 03:45:33 +01:00
pytest {posargs}
passenv =
TERM
deps =
-rrequirements-dev.txt
[testenv:flake8]
commands = flake8 hy bin tests --ignore=E121,E123,E126,E226,E24,E704,W503,E305