Files
jhalfs/tox.ini
Jeremy Huntwork 130eda3e15 Just dumping some testing changes for now.
Will come back with a proper commit message and additional changes
2022-10-06 14:44:27 -04:00

18 lines
427 B
INI

[tox]
envlist = py310
[testenv]
usedevelop = true
passenv = SHELL, HOME=.cache
deps=
coverage==6.5.*
flake8==5.0.*
pytest==7.1.*
commands=
flake8 jhalfs
flake8 tests
coverage erase
coverage run --source jhalfs,tests --branch {envbindir}/py.test -v {posargs}
coverage html --include={toxinidir}/jhalfs/*,{toxinidir}/tests/*
coverage report -m --include={toxinidir}/jhalfs/* --fail-under=100