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

41 lines
576 B

[tox]
envlist =
8 years ago
py26,
py27,
py32,
py33,
py34
# ignore missing setup.py
skipsdist = True
8 years ago
[testenv:py]
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 .
8 years ago
[testenv:pre-commit]
deps =
pre-commit
command =
pre-commit {posargs}
[pytest]
norecursedirs = .git .tox docs