docker-tidy/tox.ini

31 lines
400 B
INI
Raw Normal View History

2015-07-01 00:33:43 +02:00
[tox]
envlist = py26,py27,py33,py34
[testenv]
deps =
-rrequirements.txt
flake8
pytest
mock
commands =
py.test {posargs:tests}
flake8 .
2015-07-14 22:11:43 +02:00
[testenv:py26]
deps =
-rrequirements.txt
flake8
pytest
mock < 1.1.0
2015-07-01 00:33:43 +02:00
[testenv:install-hooks]
deps =
pre-commit
commands =
pre-commit install
[flake8]
ignore =
exclude = .git/*,.tox/*,debian/*
max_line_length = 85