You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wting_autojump/tox.ini

46 lines
625 B

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