mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-16 01:30:41 +00:00
24 lines
315 B
INI
24 lines
315 B
INI
|
[tox]
|
||
|
envlist = py26,py27,py33,py34
|
||
|
|
||
|
[testenv]
|
||
|
deps =
|
||
|
-rrequirements.txt
|
||
|
flake8
|
||
|
pytest
|
||
|
mock
|
||
|
commands =
|
||
|
py.test {posargs:tests}
|
||
|
flake8 .
|
||
|
|
||
|
[testenv:install-hooks]
|
||
|
deps =
|
||
|
pre-commit
|
||
|
commands =
|
||
|
pre-commit install
|
||
|
|
||
|
[flake8]
|
||
|
ignore =
|
||
|
exclude = .git/*,.tox/*,debian/*
|
||
|
max_line_length = 85
|