1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 14:00:46 +00:00
wting_autojump/tox.ini

30 lines
492 B
INI
Raw Normal View History

[tox]
envlist =
py39
# ignore missing setup.py
skipsdist = True
2016-05-04 06:11:40 +00:00
[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
2016-06-23 01:09:36 +00:00
pytest >= 2.9
2016-04-29 05:44:27 +00:00
commands =
coverage run --source=bin/ --omit=bin/autojump_argparse.py -m \
2022-01-23 00:50:41 +00:00
py.test -vv -rxs --tb native -s --strict-markers {posargs:tests}
2016-04-29 05:44:27 +00:00
coverage report -m
2016-04-29 06:25:07 +00:00
[testenv:pre-commit]
deps =
2016-05-04 06:11:40 +00:00
pre-commit>=0.7.0
commands =
2016-04-29 06:25:07 +00:00
pre-commit {posargs}
[pytest]
norecursedirs = .git .tox docs