1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00
wting_autojump/tox.ini

46 lines
625 B
INI
Raw Normal View History

[tox]
envlist =
2016-04-29 05:44:27 +00:00
py26,
py27,
py32,
py33,
py34
# ignore missing setup.py
skipsdist = True
[testenv]
2016-04-29 05:44:27 +00:00
setenv =
PYTHONDONTWRITEBYTECODE = 1
deps =
mock
2016-04-29 05:44:27 +00:00
coverage
2016-04-29 05:50:09 +00:00
ipdb
ipython
pytest
2016-04-29 05:44:27 +00:00
commands =
coverage run --source=bin/ -m pytest -vv -rxs --tb native -s --durations 10 --strict {posargs:tests}
coverage report -m
[testenv:flake8]
2016-04-29 05:44:27 +00:00
deps =
flake8
pyflakes
pep8
mccabe
commands =
flake8 .
[flake8]
filename =
2016-04-29 05:44:27 +00:00
*.py,
autojump
ignore =
2016-04-29 05:44:27 +00:00
E126,
E128
max-line-length = 131
max-complexity = 20
show-pep8 = True
[pytest]
norecursedirs = .git .tox docs